Example #1
0
 public bool FileExists(string filePath)
 {
     try
     {
         IXboxFile file = XboxUtils.GetFile(filePath);
         return(true);
     }
     catch (Exception)
     {
         XboxUtils.ErrorMessage(filePath + " does not exist.");
         return(false);
     }
 }