Determine whether the given file (or directory) exists.
string or range of characters representing the file name
true if the file name specified as input exists
auto f = deleteme ~ "does.not.exist"; assert(!f.exists); f.write("hello"); assert(f.exists); f.remove; assert(!f.exists);
See Implementation
Determine whether the given file (or directory) exists.