Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isHidden (0.12 sec)

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

     * <code>smb1://workgroup/</code> lists servers, the <code>smb1://</code>
     * URL lists all available workgroups on a netbios LAN. Again,
     * in this context many methods are not valid and return default
     * values(e.g. <code>isHidden</code> will always return false).
     * </td></tr>
     *
     * <tr><td ><code>smb1://angus.foo.net/d/jcifs/smb1/pipes.doc</code></td><td>
     * The server name may also be a DNS name as it is in this example. See
    Registered: Sun Sep 07 00:10:21 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

            if (this.fileLocator.isRootOrShare()) {
                return false;
            }
            exists();
            return (this.attributes & ATTR_DIRECTORY) == 0;
        }
    
        @Override
        public boolean isHidden() throws SmbException {
            if (this.fileLocator.getShare() == null) {
                return false;
            }
            if (this.fileLocator.isRootOrShare()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top