Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FILE_NOTIFY_CHANGE_DIR_NAME (0.08 sec)

  1. src/main/java/jcifs/FileNotifyInformation.java

         * return. Changes include creating or deleting a directory.
         */
        int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002;
    
        /**
         * Both <code>FILE_NOTIFY_CHANGE_FILE_NAME</code> and <code>FILE_NOTIFY_CHANGE_DIR_NAME</code>
         */
        int FILE_NOTIFY_CHANGE_NAME = 0x00000003;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        /**
         * Notify when a file name changes
         */
        public static final int FILE_NOTIFY_CHANGE_FILE_NAME = 0x1;
        /**
         * Notify when a directory name changes
         */
        public static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x2;
        /**
         * Notify when file attributes change
         */
        public static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x4;
        /**
         * Notify when file size changes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top