Changeset 2222 for trunk/eraser/Eraser.DefaultPlugins/ErasureTargets/FileSystemObjectErasureTarget.cs
- Timestamp:
- 7/10/2010 8:36:36 AM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser/Eraser.DefaultPlugins/ErasureTargets/FileSystemObjectErasureTarget.cs
r2153 r2222 91 91 /// </summary> 92 92 /// <param name="info">The directory to look files in.</param> 93 /// <returns>A list of files found in the directory matching the IncludeMask 94 /// property.</returns> 93 /// <returns>A list of files found in the directory.</returns> 94 /// <remarks>This function does not recurse into directories which are 95 /// reparse points.</remarks> 95 96 protected static FileInfo[] GetFiles(DirectoryInfo info) 96 97 { 97 98 List<FileInfo> result = new List<FileInfo>(); 98 if (info.Exists )99 if (info.Exists && (info.Attributes & FileAttributes.ReparsePoint) == 0) 99 100 { 100 101 try
Note: See TracChangeset
for help on using the changeset viewer.
