Changeset 1737
- Timestamp:
- 2/3/2010 12:46:35 AM (2 years ago)
- File:
-
- 1 edited
-
branches/eraser6/6.0/Eraser.Manager/Task.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/6.0/Eraser.Manager/Task.cs
r1677 r1737 633 633 Regex excludePattern = new Regex(regex, RegexOptions.IgnoreCase); 634 634 foreach (FileInfo file in files) 635 if ((file.Attributes & FileAttributes.ReparsePoint) == 0 && 635 if (file.Exists && 636 (file.Attributes & FileAttributes.ReparsePoint) == 0 && 636 637 excludePattern.Matches(file.FullName).Count == 0) 637 638 { … … 644 645 foreach (FileInfo file in files) 645 646 { 646 if ( (file.Attributes & FileAttributes.ReparsePoint) != 0)647 if (!file.Exists || (file.Attributes & FileAttributes.ReparsePoint) != 0) 647 648 continue; 648 649
Note: See TracChangeset
for help on using the changeset viewer.
