We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011b671 commit d9d3396Copy full SHA for d9d3396
1 file changed
CompactGUI.Core/Analyser.cs
@@ -26,7 +26,7 @@ public Analyser(string folder)
26
{
27
try
28
29
- var allFiles = await Task.Run(() => Directory.EnumerateFiles(FolderName, "*", new EnumerationOptions { RecurseSubdirectories = true, IgnoreInaccessible = true }).AsShortPathNames(), cancellationToken).ConfigureAwait(false);
+ var allFiles = await Task.Run(() => Directory.EnumerateFiles(FolderName, "*", new EnumerationOptions { RecurseSubdirectories = true, IgnoreInaccessible = true, AttributesToSkip = FileAttributes.ReparsePoint }).AsShortPathNames(), cancellationToken).ConfigureAwait(false);
30
var fileDetails = allFiles
31
.AsParallel()
32
.WithCancellation(cancellationToken)
0 commit comments