Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        int FILE_NOTIFY_CHANGE_EA = 0x00000080;
    
        /**
         * Any security-descriptor change in the watched directory or subtree causes a change notification wait operation to
         * return.
         */
        int FILE_NOTIFY_CHANGE_SECURITY = 0x00000100;
    
        /**
         * Any change to a named stream of a file 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)
  2. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

         * Notify when extended attributes change
         */
        public static final int FILE_NOTIFY_CHANGE_EA = 0x80;
        /**
         * Notify when security descriptor changes
         */
        public static final int FILE_NOTIFY_CHANGE_SECURITY = 0x100;
        /**
         * Notify when alternate data stream name changes
         */
        public static final int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x200;
        /**
         * Notify when alternate data stream 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