i try to get list of paths from directory symlink. It's write exception
Could not find a part of the path.
var filePath = @"C:\symlink";
var paths = new List<string>((Directory
.GetFiles(filePath, "*.*", SearchOption.AllDirectories))
.OrderBy(x => new FileInfo(x).Name));