Changeset 718 for xmlTools/trunk/posUpdate
- Timestamp:
- Mar 21, 2013, 11:53:30 AM (12 years ago)
- Location:
- xmlTools/trunk/posUpdate
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
xmlTools/trunk/posUpdate/Program.cs
r710 r718 45 45 static void Main(string[] args) 46 46 { 47 //long ticksThisTime = 0;48 //System.Diagnostics.Stopwatch timePerParse = System.Diagnostics.Stopwatch.StartNew();49 50 51 52 47 try 53 48 { … … 59 54 printAppError(appErrors.ERROR_PARAMS, "Error processing parameters:\n" + e.ToString()); 60 55 } 61 62 63 64 //// Stop the timer, and save the65 //// elapsed ticks for the operation.66 67 //timePerParse.Stop();68 //ticksThisTime = timePerParse.ElapsedTicks;69 //Console.WriteLine(ticksThisTime);70 //Console.ReadLine();71 56 } 72 57 } -
xmlTools/trunk/posUpdate/Util.cs
r710 r718 19 19 static public bool backupFile(string file) 20 20 { 21 //try22 //{23 //System.IO.File.Copy(file, file + ".bak", false); //make a backup first //false is to not override already created backups24 //}25 //catch (Exception e)26 //{27 //Program.printAppError(Program.appErrors.BACKUPS_ALREADY_EXISTS, "Couldn't backup file " + file + " :\n" + e.Message);28 //return false;29 //}21 try 22 { 23 System.IO.File.Copy(file, file + ".bak", false); //make a backup first //false is to not override already created backups 24 } 25 catch (Exception e) 26 { 27 Program.printAppError(Program.appErrors.BACKUPS_ALREADY_EXISTS, "Couldn't backup file " + file + " :\n" + e.Message); 28 return false; 29 } 30 30 return true; 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.