Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for readDirFn (0.19 sec)

  1. cmd/os-readdir-common.go

    func readDir(dirPath string) (entries []string, err error) {
    	return readDirWithOpts(dirPath, readDirOpts{count: -1})
    }
    
    // Return up to count entries at the directory dirPath.
    func readDirN(dirPath string, count int) (entries []string, err error) {
    	return readDirWithOpts(dirPath, readDirOpts{count: count})
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Jul 09 23:20:51 GMT 2021
    - 1.3K bytes
    - Viewed (0)
Back to top