Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 279 for readdir (0.15 sec)

  1. src/io/fs/readdir.go

    //
    // If fs implements [ReadDirFS], ReadDir calls fs.ReadDir.
    // Otherwise ReadDir calls fs.Open and uses ReadDir and Close
    // on the returned file.
    func ReadDir(fsys FS, name string) ([]DirEntry, error) {
    	if fsys, ok := fsys.(ReadDirFS); ok {
    		return fsys.ReadDir(name)
    	}
    
    	file, err := fsys.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	defer file.Close()
    
    	dir, ok := file.(ReadDirFile)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. cmd/os-readdir-common.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Options for readDir function call
    type readDirOpts struct {
    	// The maximum number of entries to return
    	count int
    	// Follow directory symlink
    	followDirSymlink bool
    }
    
    // Return all the entries at the directory dirPath.
    func readDir(dirPath string) (entries []string, err error) {
    	return readDirWithOpts(dirPath, readDirOpts{count: -1})
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jul 09 23:20:51 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. src/os/dir.go

    func (f *File) Readdir(n int) ([]FileInfo, error) {
    	if f == nil {
    		return nil, ErrInvalid
    	}
    	_, _, infos, err := f.readdir(n, readdirFileInfo)
    	if infos == nil {
    		// Readdir has historically always returned a non-nil empty slice, never nil,
    		// even on error (except misuse with nil receiver above).
    		// Keep it that way to avoid breaking overly sensitive callers.
    		infos = []FileInfo{}
    	}
    	return infos, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/io/fs/readdir_test.go

    				names = append(names, d.Name())
    			}
    			t.Errorf("ReadDir(%s) = %v, %v, want %v, nil", desc, names, err, []string{"hello.txt", "sub"})
    		}
    	}
    
    	// Test that ReadDir uses the method when present.
    	dirs, err := ReadDir(readDirOnly{testFsys}, ".")
    	check("readDirOnly", dirs, err)
    
    	// Test that ReadDir uses Open when the method is not present.
    	dirs, err = ReadDir(openOnly{testFsys}, ".")
    	check("openOnly", dirs, err)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:25:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/testing/fstest/testfs.go

    			t.errorf("%s: third Open: ReadDir(%d) after %d: 0 entries but nil error", dir, n, len(list2))
    			return
    		}
    	}
    	t.checkDirList(dir, "first Open+ReadDir(-1) vs third Open+ReadDir(1,2) loop", list, list2)
    
    	// If fsys has ReadDir, check that it matches and is sorted.
    	if fsys, ok := t.fsys.(fs.ReadDirFS); ok {
    		list2, err := fsys.ReadDir(dir)
    		if err != nil {
    			t.errorf("%s: fsys.ReadDir: %w", dir, err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/net/http/example_filesystem_test.go

    // It is used to wrap the Readdir method of http.File so that we can
    // remove files and directories that start with a period from its output.
    type dotFileHidingFile struct {
    	http.File
    }
    
    // Readdir is a wrapper around the Readdir method of the embedded File
    // that filters out all files that start with a period in their name.
    func (f dotFileHidingFile) Readdir(n int) (fis []fs.FileInfo, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 02:32:42 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. src/os/dir_plan9.go

    			d.bufp, d.nbuf = 0, nb
    
    			if err != nil {
    				if err == io.EOF {
    					break
    				}
    				return names, dirents, infos, &PathError{Op: "readdir", Path: file.name, Err: err}
    			}
    			if nb < syscall.STATFIXLEN {
    				return names, dirents, infos, &PathError{Op: "readdir", Path: file.name, Err: syscall.ErrShortStat}
    			}
    		}
    
    		// Get a record from the buffer.
    		b := d.buf[d.bufp:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/io/ioutil/ioutil_test.go

    	}
    }
    
    func TestReadDir(t *testing.T) {
    	dirname := "rumpelstilzchen"
    	_, err := ReadDir(dirname)
    	if err == nil {
    		t.Fatalf("ReadDir %s: error expected, none found", dirname)
    	}
    
    	dirname = ".."
    	list, err := ReadDir(dirname)
    	if err != nil {
    		t.Fatalf("ReadDir %s: %v", dirname, err)
    	}
    
    	foundFile := false
    	foundSubDir := false
    	for _, dir := range list {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/io/fs/fs.go

    	//
    	// If n > 0, ReadDir returns at most n DirEntry structures.
    	// In this case, if ReadDir returns an empty slice, it will return
    	// a non-nil error explaining why.
    	// At the end of a directory, the error is io.EOF.
    	// (ReadDir must return io.EOF itself, not an error wrapping io.EOF.)
    	//
    	// If n <= 0, ReadDir returns all the DirEntry values from the directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/io/fs/walk.go

    // attempted and has err set to nil, giving the function a chance to
    // return [SkipDir] or [SkipAll] and avoid the ReadDir entirely. The second call
    // is after a failed ReadDir and reports the error from ReadDir.
    // (If ReadDir succeeds, there is no second call.)
    //
    // The differences between WalkDirFunc compared to [path/filepath.WalkFunc] are:
    //
    //   - The second argument has type [DirEntry] instead of [FileInfo].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top