os: add ReadDir method for lightweight directory reading · Issue #41467 · golang/go
os.File provides two ways to read a directory: Readdirnames returns a list of the names of the directory entries, and Readdir returns the names along with stat information. On Plan 9 and Windows, R...