- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for DosFileFilter (0.1 sec)
-
src/main/java/jcifs/smb/DosFileFilter.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * * */ public class DosFileFilter implements SmbFileFilter { protected String wildcard; protected int attributes; /** * This filter can be considerably more efficient than other file filters
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/DosFileFilter.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; public class DosFileFilter implements SmbFileFilter { protected String wildcard; protected int attributes; /* This filter can be considerably more efficient than other file filters
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
} } private static DosFileFilter unwrapDOSFilter ( ResourceFilter ff ) { if ( ff instanceof ResourceFilterWrapper ) { SmbFileFilter sff = ( (ResourceFilterWrapper) ff ).getFileFilter(); if ( sff instanceof DosFileFilter ) { return (DosFileFilter) sff; } } return null; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
SmbFile[] dirs = f.listFiles(new DosFileFilter("*", SmbConstants.ATTR_DIRECTORY)); assertNotNull(dirs); assertEquals(1, dirs.length); if ( haveHidden && !Boolean.parseBoolean(getProperties().getOrDefault("test.skip.hidden", "false")) ) { SmbFile[] hidden = f.listFiles(new DosFileFilter("*", SmbConstants.ATTR_HIDDEN));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)