- Timestamp:
- 01/29/10 00:40:49 (2 years ago)
- Location:
- branches/eraser6/6.0
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
Eraser.DefaultPlugins/FileSystems/Windows.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/6.0
- Property svn:mergeinfo changed
/trunk/eraser6 merged: 1712-1718
- Property svn:mergeinfo changed
-
branches/eraser6/6.0/Eraser.DefaultPlugins/FileSystems/Windows.cs
r1677 r1719 40 40 //Set the date of the file to be invalid to prevent forensic 41 41 //detection 42 info.Attributes = FileAttributes.NotContentIndexed; 42 43 info.CreationTime = info.LastWriteTime = info.LastAccessTime = MinTimestamp; 43 info.Attributes = FileAttributes.Normal;44 info.Attributes = FileAttributes.NotContentIndexed;45 44 46 45 //Rename the file a few times to erase the entry from the file system … … 127 126 throw new InvalidOperationException(S._("The folder {0} cannot be deleted as it is " + 128 127 "not empty.")); 128 129 //If the directory does not already exist, we should just return -- there's 130 //nothing to be done. 131 if (!info.Exists) 132 return; 129 133 130 134 //TODO: check for reparse points
Note: See TracChangeset
for help on using the changeset viewer.
