Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            file1.close();
    
            SmbFile file2 = new SmbFile(dirPath + "file2.txt", fileContext);
            file2.createNewFile();
            file2.close();
    
            SmbFile subdir = new SmbFile(dirPath + "subdir/", fileContext);
            subdir.mkdir();
            subdir.close();
            Thread.sleep(200);
    
            // Test string array listing with fresh context
            CIFSContext listContext = createFreshContext();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  2. src/archive/zip/reader_test.go

    func TestFS(t *testing.T) {
    	for _, test := range []struct {
    		file string
    		want []string
    	}{
    		{
    			"testdata/unix.zip",
    			[]string{"hello", "dir/bar", "readonly"},
    		},
    		{
    			"testdata/subdir.zip",
    			[]string{"a/b/c"},
    		},
    	} {
    		test := test
    		t.Run(test.file, func(t *testing.T) {
    			t.Parallel()
    			z, err := OpenReader(test.file)
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue Mar 11 22:19:38 UTC 2025
    - 56.6K bytes
    - Viewed (0)
Back to top