Files
wren/doc/site/modules/io/directory.markdown
T
Bob Nystrom 60162575ee More file system checking functions:
- Stat#isFile
- Stat#isDirectory
- Directory.exists()
- File.exists()
2016-02-21 12:23:33 -08:00

374 B

^title Directory Class

A directory on the file system.

Static Methods

Directory.exists(path)

Whether a directory exists at path. This returns false for files or other special file system entities.

Directory.list(path)

Lists the contents of the directory at path. Returns a sorted list of path strings for all of the contents of the directory.