- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for FILE_NOTIFY_CHANGE_LAST_ACCESS (0.1 sec)
-
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")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java
@CsvSource({ "1, FILE_NOTIFY_CHANGE_FILE_NAME", "2, FILE_NOTIFY_CHANGE_DIR_NAME", "4, FILE_NOTIFY_CHANGE_ATTRIBUTES", "8, FILE_NOTIFY_CHANGE_SIZE", "16, FILE_NOTIFY_CHANGE_LAST_WRITE", "32, FILE_NOTIFY_CHANGE_LAST_ACCESS", "64, FILE_NOTIFY_CHANGE_CREATION", "128, FILE_NOTIFY_CHANGE_EA", "256, FILE_NOTIFY_CHANGE_SECURITY",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
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. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
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 */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
private static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008; private static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010; private static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x00000020; private static final int FILE_NOTIFY_CHANGE_CREATION = 0x00000040; private static final int FILE_NOTIFY_CHANGE_EA = 0x00000080; private static final int FILE_NOTIFY_CHANGE_SECURITY = 0x00000100;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0)