Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CIFS (0.14 sec)

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

     * of the resource URL
     */
        public SmbFile[] listFiles() throws SmbException {
            return listFiles( "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null );
        }
    
    /**
     * The CIFS protocol provides for DOS "wildcards" to be used as
     * a performance enhancement. The client does not have to filter
     * the names and the server does not have to return all directory
     * entries.
     * <p>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbFile.java

         */
        public SmbFile[] listFiles () throws SmbException {
            return SmbEnumerationUtil.listFiles(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null);
        }
    
    
        /**
         * The CIFS protocol provides for DOS "wildcards" to be used as
         * a performance enhancement. The client does not have to filter
         * the names and the server does not have to return all directory
         * entries.
         * <p>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top