- Timestamp:
- 6/13/2010 3:30:16 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser/Eraser.DefaultPlugins/FileSystems/Windows.cs
r2159 r2161 38 38 public abstract class WindowsFileSystem : FileSystem 39 39 { 40 public override void ResetFileTimes(FileSystemInfo info) 41 { 42 //Reset the file access times: after every rename the file times may change. 43 info.SetTimes(MinTimestamp, MinTimestamp, MinTimestamp, MinTimestamp); 44 } 45 40 46 public override void DeleteFile(FileInfo info) 41 47 { … … 100 106 try 101 107 { 102 //Reset the file access times: after every rename the file times may change. 103 info.SetTimes(MinTimestamp, MinTimestamp, MinTimestamp, MinTimestamp); 108 ResetFileTimes(info); 104 109 105 110 //Try to rename the file. If it fails, it is probably due to another
Note: See TracChangeset
for help on using the changeset viewer.
