Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for FILE_NOTIFY_CHANGE_LAST_ACCESS (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/FileNotifyInformationTest.java

            }
    
            @Test
            @DisplayName("Verify FILE_NOTIFY_CHANGE_LAST_ACCESS constant value")
            void testFileNotifyChangeLastAccess() {
                assertEquals(0x00000020, FileNotifyInformation.FILE_NOTIFY_CHANGE_LAST_ACCESS);
            }
    
            @Test
            @DisplayName("Verify FILE_NOTIFY_CHANGE_CREATION constant value")
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

         * Notify when last write time changes
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10;
        /**
         * Notify when last access time changes
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x20;
        /**
         * Notify when creation time changes
         */
        public static final int FILE_NOTIFY_CHANGE_CREATION = 0x40;
        /**
         * Notify when extended attributes change
         */
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  3. src/main/java/jcifs/FileNotifyInformation.java

        /**
         * Any change to the last access time of files in the watched directory or subtree causes a change notification wait
         * operation to return.
         */
        int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x00000020;
    
        /**
         * Any change to the creation time of files in the watched directory or subtree causes a change notification wait
         * operation to return.
         */
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 5.2K bytes
    - Click Count (0)
Back to Top