- Timestamp:
- 06/13/10 00:29:44 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser/Eraser.DefaultPlugins/FileSystems/Windows.cs
r2150 r2155 101 101 { 102 102 //Reset the file access times: after every rename the file times may change. 103 info. CreationTime = info.LastWriteTime = info.LastAccessTime = MinTimestamp;103 info.SetTimes(MinTimestamp, MinTimestamp, MinTimestamp, MinTimestamp); 104 104 105 105 //Try to rename the file. If it fails, it is probably due to another … … 371 371 { 372 372 //Reset the file times 373 streamInfo.LastAccessTime = lastAccess; 374 streamInfo.LastWriteTime = lastWrite; 375 streamInfo.CreationTime = created; 373 streamInfo.SetTimes(MinTimestamp, created, lastWrite, lastAccess); 376 374 } 377 375 }
Note: See TracChangeset
for help on using the changeset viewer.
