Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FILE_SHARE_DELETE (0.22 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * other SMB clients will be permitted to delete the target file while
         * this file is open. This constant may be logically OR'd with other share
         * access flags.
         */
        public static final int FILE_SHARE_DELETE = 0x04;
    
        // file attribute encoding
        /**
         * A file with this bit on as returned by {@code getAttributes()} or set
         * with {@code setAttributes()} will be read-only
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                return (SmbBasicFileInfo) withOpen(th, Smb2CreateRequest.FILE_OPEN, SmbConstants.FILE_READ_ATTRIBUTES,
                        SmbConstants.FILE_SHARE_READ | SmbConstants.FILE_SHARE_WRITE | SmbConstants.FILE_SHARE_DELETE, null);
            }
    
            if (th.hasCapability(SmbConstants.CAP_NT_SMBS)) {
                /*
                 * Trans2 Query Path Information Request / Response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top