Files
wren/test/io/directory/exists.wren
T

10 lines
277 B
Plaintext
Raw Normal View History

2016-02-21 12:23:33 -08:00
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.