Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

         *
         * @return  The uncanonicalized full URL of this SMB resource.
         */
    
        public String getPath() {
            return url.toString();
        }
    
        String getUncPath0() {
            if (unc == null) {
                final char[] in = url.getPath().toCharArray();
                final char[] out = new char[in.length];
                final int length = in.length;
                int i, o, state;
    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

         */
        public SmbFile(final URL url, final CIFSContext tc) throws MalformedURLException {
            super(url);
            if (url.getPath() != null && !url.getPath().isEmpty() && url.getPath().charAt(0) != '/') {
                throw new MalformedURLException("Invalid SMB URL: " + url);
            }
            this.transportContext = tc;
    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