static bool IsSymlink(string[] args) { if (args.Length < 1) { Console.WriteLine("Usage: issymlink <path>"); return(false); } Console.WriteLine(physFS.IsSymbolicLink(args[0])); return(true); }