Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for FILE_DELETE (0.04 sec)

  1. src/test/java/jcifs/ACETest.java

                assertEquals(0x00000010, ACE.FILE_WRITE_EA, "FILE_WRITE_EA should be 0x00000010");
                assertEquals(0x00000020, ACE.FILE_EXECUTE, "FILE_EXECUTE should be 0x00000020");
                assertEquals(0x00000040, ACE.FILE_DELETE, "FILE_DELETE should be 0x00000040");
                assertEquals(0x00000080, ACE.FILE_READ_ATTRIBUTES, "FILE_READ_ATTRIBUTES should be 0x00000080");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/SmbConstantsTest.java

            assertEquals(0x00000008, SmbConstants.FILE_READ_EA);
            assertEquals(0x00000010, SmbConstants.FILE_WRITE_EA);
            assertEquals(0x00000020, SmbConstants.FILE_EXECUTE);
            assertEquals(0x00000040, SmbConstants.FILE_DELETE);
            assertEquals(0x00000080, SmbConstants.FILE_READ_ATTRIBUTES);
            assertEquals(0x00000100, SmbConstants.FILE_WRITE_ATTRIBUTES);
            assertEquals(0x00010000, SmbConstants.DELETE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ACE.java

        /**
         * Permission to execute a file or traverse a directory
         */
        int FILE_EXECUTE = 0x00000020; // 6
        /**
         * Permission to delete a file or directory
         */
        int FILE_DELETE = 0x00000040; // 7
        /**
         * Permission to read file attributes
         */
        int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /**
         * Permission to write file attributes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        int FILE_WRITE_EA = 0x00000010; // 5
        /** File execute access right */
        int FILE_EXECUTE = 0x00000020; // 6
        /** File delete child access right */
        int FILE_DELETE = 0x00000040; // 7
        /** File read attributes access right */
        int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /** File write attributes access right */
        int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/ACE.java

        /** Permission to execute a file or traverse a directory */
        public static final int FILE_EXECUTE = 0x00000020; // 6
        /** Permission to delete a file or directory */
        public static final int FILE_DELETE = 0x00000040; // 7
        /** Permission to read file attributes */
        public static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /** Permission to write file attributes */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbConstants.java

        int FILE_WRITE_EA = 0x00000010; // 5
        /**
         * Permission to execute the file.
         */
        int FILE_EXECUTE = 0x00000020; // 6
        /**
         * Permission to delete the file.
         */
        int FILE_DELETE = 0x00000040; // 7
        /**
         * Permission to read file attributes.
         */
        int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /**
         * Permission to write file attributes.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

         * @param shareAccess File sharing flag: <code>SmbFile.FILE_NOSHARE</code> or any combination of <code>SmbFile.FILE_READ</code>, <code>SmbFile.FILE_WRITE</code>, and <code>SmbFile.FILE_DELETE</code>
         * @throws SmbException if an SMB error occurs
         * @throws MalformedURLException if the URL is not properly formatted
         * @throws UnknownHostException if the host cannot be resolved
         */
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top