Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for backslash (0.04 sec)

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

                    // The destination path should be relative to the share
                    String destPath = dest.getUncPath();
                    // Remove leading backslash if present
                    if (destPath.startsWith("\\")) {
                        destPath = destPath.substring(1);
                    }
    
                    // Open the source file for renaming
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                } else {
                    share = null;
                    unc = "\\";
                }
            }
            return unc;
        }
    
        /**
         * Retuns the Windows UNC style path with backslashs intead of forward slashes.
         *
         * @return  The UNC path.
         */
        public String getUncPath() {
            getUncPath0();
            if (share == null) {
                return "\\\\" + url.getHost();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top