Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getUncPath (0.11 sec)

  1. src/test/java/jcifs/tests/FileLocationTest.java

                assertEquals("\\foo\\", fl.getUNCPath());
                // this intentionally sticks to the old name
                assertEquals("/share/foo/", fl.getURLPath());
    
                try ( SmbResource c = p.resolve("bar/") ) {
                    SmbResourceLocator fl2 = c.getLocator();
                    reqPath = fl2.getUNCPath();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

                    }
                }
            }
    
            String hostName = loc.getServerWithDfs();
            String path = ( loc.getType() == SmbConstants.TYPE_SHARE || loc.getUNCPath() == null || "\\".equals(loc.getUNCPath()) ) ? null
                    : loc.getUNCPath();
            String share = loc.getShare();
    
            DfsReferralData start = referral != null ? referral : this.ctx.getDfs().resolve(this.ctx, hostName, loc.getShare(), path);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

        private final URL url;
    
        private DfsReferralData dfsReferral = null; // For getDfsPath() and getServerWithDfs()
    
        private String unc; // Initially null; set by getUncPath; never ends with '/'
        private String canon; // Initially null; set by getUncPath; dir must end with '/'
        private String share; // Can be null
    
        private Address[] addresses;
        private int addressIndex;
        private int type;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

            this.openFlags = ( pipe.getPipeType() & 0xFFFF00FF ) | SmbConstants.O_EXCL;
            this.access = ( pipe.getPipeType() & 7 ) | 0x20000;
            this.uncPath = this.pipe.getUncPath();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbPipeHandle#unwrap(java.lang.Class)
         */
        @SuppressWarnings ( "unchecked" )
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbCopyUtil.java

                            new Trans2SetFileInformationResponse(dh.getConfig()));
                    }
                    else {
                        dh.send(
                            new SmbComSetInformation(dh.getConfig(), dest.getUncPath(), attrs, mtime),
                            new SmbComSetInformationResponse(dh.getConfig()));
                    }
                }
            }
            catch ( IOException se ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/ConcurrencyTest.java

                            try {
                                f.delete();
                            }
                            catch ( IOException e ) {
                                System.err.println(f.getLocator().getUNCPath());
                                throw e;
                            }
                        }
                    }
                    this.completed = true;
                }
                catch (
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:40:50 UTC 2021
    - 17.6K bytes
    - Viewed (0)
Back to top