Files
wren/test/io/file/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
257 B
JavaScript
Vendored

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.