Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isWorkgroup0 (0.1 seconds)

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

         */
    
        public SmbFile(final SmbFile context, final String name) throws MalformedURLException, UnknownHostException {
            this(context.isWorkgroup0() ? new URL(null, "smb1://" + name, Handler.SMB_HANDLER)
                    : new URL(context.url, name, Handler.SMB_HANDLER), context.auth);
        }
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 112.2K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb/SmbFile.java

            this(isWorkgroup(context) ? new URL(null, "smb://" + checkName(name) + "/", context.getContext().getUrlHandler())
                    : new URL(context.getLocator().getURL(),
                            encodeRelativePath(checkName(name)) + ((attributes & ATTR_DIRECTORY) > 0 ? "/" : "")),
                    context.getContext());
    
            if (!isWorkgroup(context)) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 103.2K bytes
    - Click Count (0)
Back to Top