Ignore:
Timestamp:
1/28/2010 8:02:58 AM (2 years ago)
Author:
lowjoel
Message:

Set that files are not meant to be indexed when it is meant for deletion before we even set the file times.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eraser6/Eraser.DefaultPlugins/FileSystems/Windows.cs

    r1692 r1715  
    4040            //Set the date of the file to be invalid to prevent forensic 
    4141            //detection 
     42            info.Attributes = FileAttributes.NotContentIndexed; 
    4243            info.CreationTime = info.LastWriteTime = info.LastAccessTime = MinTimestamp; 
    43             info.Attributes = FileAttributes.Normal; 
    44             info.Attributes = FileAttributes.NotContentIndexed; 
    4544 
    4645            //Rename the file a few times to erase the entry from the file system 
Note: See TracChangeset for help on using the changeset viewer.