Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dfs_path (2.38 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            assertNull(decodedStorageInfo.share_name);
        }
    
        @Test
        void testDfsInfo3_EncodeDecode() throws NdrException {
            netdfs.DfsInfo3 info3 = new netdfs.DfsInfo3();
            info3.path = "dfs_path";
            info3.comment = "dfs_comment";
            info3.state = netdfs.DFS_VOLUME_FLAVOR_AD_BLOB;
            info3.num_stores = 1;
            info3.stores = new netdfs.DfsStorageInfo[1];
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  2. 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: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top