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

10 lines
257 B
Plaintext
Raw Normal View History

2016-02-21 12:23:33 -08:00
import "io" for File
System.print(File.exists("test/io/file/file.txt")) // expect: true
System.print(File.exists("nonexistent")) // expect: false
// Directories are not files.
System.print(File.exists("test/io/file")) // expect: false
// TODO: Symlinks.