Noogλe
search input
Function of the day
Takes 1 arguments
path
Return the contents of the directory path as a set mapping directory entries to the corresponding file type. For instance, if directory
Acontains a regular fileBand another directoryC, thenbuiltins.readDir ./Areturns the set{ B = "regular"; C = "directory"; }The possible values for the file type are
"regular","directory","symlink"and"unknown".