isSymlink
fn
bool isSymlink(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R) @propertyReturns whether the given file is a symbolic link.
On Windows, returns true when the file is either a symbolic link or a junction point.
Parameters
name | The path to the file. |
Returns
true if name is a symbolic link
Throws
FileException if the given file does not exist.
fn
bool isSymlink(R)(auto ref R name) if (isConvertibleToString!R) @propertyditto