Ignore:
Timestamp:
Mar 21, 2013, 11:53:30 AM (12 years ago)
Author:
s10k
Message:

reverted the no backup test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • xmlTools/trunk/posUpdate/Util.cs

    r710 r718  
    1919        static public bool backupFile(string file)
    2020        {
    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             //}
     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            }
    3030            return true;
    3131        }
Note: See TracChangeset for help on using the changeset viewer.