Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for subdirectories (0.08 sec)

  1. src/main/java/jcifs/ACE.java

        /**
         * Permission to write data to a file or add files to a directory
         */
        int FILE_WRITE_DATA = 0x00000002; // 2
        /**
         * Permission to append data to a file or add subdirectories
         */
        int FILE_APPEND_DATA = 0x00000004; // 3
        /**
         * Permission to read extended attributes
         */
        int FILE_READ_EA = 0x00000008; // 4
        /**
         * Permission to write extended 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)
  2. src/main/java/jcifs/smb1/smb1/ACE.java

        /** Permission to write data to a file or add files to a directory */
        public static final int FILE_WRITE_DATA = 0x00000002; // 2
        /** Permission to append data to a file or add subdirectories */
        public static final int FILE_APPEND_DATA = 0x00000004; // 3
        /** Permission to read extended attributes */
        public static final int FILE_READ_EA = 0x00000008; // 4
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

         */
        protected int thumbnailPathCacheSize = 10;
    
        /**
         * File extension for generated thumbnail images.
         */
        protected String imageExtention = "png";
    
        /**
         * Number of subdirectories for organizing thumbnails.
         */
        protected int splitSize = 10;
    
        /**
         * Maximum size of the thumbnail generation task queue.
         */
        protected int thumbnailTaskQueueSize = 10000;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbResource.java

         *
         * @param filter
         *            see constants in {@link FileNotifyInformation}
         * @param recursive
         *            whether to also watch subdirectories
         * @return watch context, needs to be closed when finished
         * @throws CIFSException if an error occurs accessing the resource
         */
        SmbWatchHandle watch(int filter, boolean recursive) throws CIFSException;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
  5. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            SmbFile dir = new SmbFile(baseUrl + "shared/listdir_" + timestamp + "/", dirContext);
            dir.mkdir();
            dir.close();
            Thread.sleep(200);
    
            // Create test files and subdirectories
            CIFSContext fileContext = createFreshContext();
            String dirPath = baseUrl + "shared/listdir_" + timestamp + "/";
            SmbFile file1 = new SmbFile(dirPath + "file1.txt", fileContext);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top