isSymlink

fnbool isSymlink(R)(R name) if (isSomeFiniteCharInputRange!R && !isConvertibleToString!R) @property

Returns 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

nameThe path to the file.

Returns

true if name is a symbolic link

Throws

FileException if the given file does not exist.
fnbool isSymlink(R)(auto ref R name) if (isConvertibleToString!R) @property

ditto