Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for uncu (0.01 sec)

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

                name = name.substring(0, last);
            }
            if (context.share == null) {
                this.unc = "\\";
            } else if (context.unc.equals("\\")) {
                this.unc = '\\' + name;
            } else {
                this.unc = context.unc + '\\' + name;
            }
            /* why? am I going around in circles?
             *  this.type = type == TYPE_WORKGROUP ? 0 : type;
             */
    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

            } else {
                req.setCreateDisposition(Smb2CreateRequest.FILE_OPEN);
            }
        }
    
        /**
         * Returns the UNC path of this resource relative to the share
         *
         * @return this file's unc path below the share
         */
        public String getUncPath() {
            return this.fileLocator.getUNCPath();
        }
    
        /**
    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