Files
wren/test/io/directory/exists.wren
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

10 lines
277 B
Plaintext

import "io" for Directory
System.print(Directory.exists("test/io/file")) // expect: true
System.print(Directory.exists("nonexistent")) // expect: false
// Files are not directories.
System.print(Directory.exists("test/io/file/file.txt")) // expect: false
// TODO: Symlinks.