static bool Exists(string[] args)
 {
     if (args.Length < 1)
     {
         Console.WriteLine("Usage: exists <file>");
         return(false);
     }
     Console.WriteLine(physFS.Exists(args[0]));
     return(true);
 }