Changeset 559 for branches/eraser6/Manager/Task.cs
- Timestamp:
- 11/14/2008 6:57:38 AM (4 years ago)
- File:
-
- 1 edited
-
branches/eraser6/Manager/Task.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Manager/Task.cs
r505 r559 368 368 Regex excludePattern = new Regex(regex, RegexOptions.IgnoreCase); 369 369 foreach (FileInfo file in files) 370 if (excludePattern.Matches(file.FullName).Count == 0) 370 if ((file.Attributes & FileAttributes.ReparsePoint) == 0 && 371 excludePattern.Matches(file.FullName).Count == 0) 371 372 { 372 373 totalSize += file.Length; … … 378 379 foreach (FileInfo file in files) 379 380 { 381 if ((file.Attributes & FileAttributes.ReparsePoint) != 0) 382 continue; 383 380 384 totalSize += file.Length; 381 385 GetPathADSes(ref result, ref totalSize, file.FullName);
Note: See TracChangeset
for help on using the changeset viewer.
