diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-05-17 18:03:58 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2023-05-17 18:03:58 +0300 |
| commit | 8e77a83a73410f388b3a879c3082eb7bf6064657 (patch) | |
| tree | 3ee3927a57b354a0e476ae399abb91c3335c1f0a /Software/Visual_Studio/Tango.FileSystem | |
| parent | 11aff2c52535254745dd521322b2b7f46ae16123 (diff) | |
| download | Tango-8e77a83a73410f388b3a879c3082eb7bf6064657.tar.gz Tango-8e77a83a73410f388b3a879c3082eb7bf6064657.zip | |
Bugs - delay progress in PPC, Overview error
Related Work Items: #8408
Diffstat (limited to 'Software/Visual_Studio/Tango.FileSystem')
| -rw-r--r-- | Software/Visual_Studio/Tango.FileSystem/FileSystemManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.FileSystem/FileSystemManager.cs b/Software/Visual_Studio/Tango.FileSystem/FileSystemManager.cs index dc8efa7dd..9c112ae75 100644 --- a/Software/Visual_Studio/Tango.FileSystem/FileSystemManager.cs +++ b/Software/Visual_Studio/Tango.FileSystem/FileSystemManager.cs @@ -19,7 +19,7 @@ namespace Tango.FileSystem folder.Path = "This PC"; folder.IsRoot = true; folder.Type = FileSystemItemType.Folder; - folder.Items = DriveInfo.GetDrives().Where(x => x.DriveType == DriveType.Fixed || x.DriveType == DriveType.Removable || x.DriveType == DriveType.Network).Select(x => new FileSystemItemDTO() + folder.Items = DriveInfo.GetDrives().Where(x => x.DriveType == DriveType.Fixed || x.DriveType == DriveType.Removable || x.DriveType == DriveType.Network).Where(x => x.IsReady).Select(x => new FileSystemItemDTO() { Path = x.RootDirectory.FullName, DriveType = x.DriveType, |
