Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SmbFileFilter (2.23 sec)

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

         */
        public SmbFile[] listFiles(final SmbFileFilter filter) throws SmbException {
            return listFiles("*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, filter);
        }
    
        String[] list(final String wildcard, final int searchAttributes, final SmbFilenameFilter fnf, final SmbFileFilter ff)
                throws SmbException {
            final ArrayList list = new ArrayList();
    Registered: Sat Dec 20 13:44:44 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 An array of {@code SmbResource} objects
         * @throws SmbException if an error occurs while listing the files
         */
        public SmbFile[] listFiles(final SmbFileFilter filter) throws SmbException {
            return SmbEnumerationUtil.listFiles(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, filter);
        }
    
        @Override
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top