Implement GetLogicalDrives for Unix
authorJeremy Kuhne <jeremy.kuhne@microsoft.com>
Wed, 29 Jun 2016 05:27:39 +0000 (22:27 -0700)
committerJeremy Kuhne <jeremy.kuhne@microsoft.com>
Thu, 30 Jun 2016 20:49:53 +0000 (13:49 -0700)
commit2bb426990c0bdce5d247276fcfec922b52e9c4ec
treee74e2238e8116d60f3e3533fc57f06d299df0c7e
parent998ba23d566e6c5816b59001aa6f985bf1e70cd0
Implement GetLogicalDrives for Unix

Implement and unify code for getting drives/mount points

Commit migrated from https://github.com/dotnet/corefx/commit/20ddbef76e857901e9c2baac1c0723cf9951324a
17 files changed:
src/libraries/Common/src/Interop/Unix/System.Native/Interop.MountPoints.FormatInfo.cs [new file with mode: 0644]
src/libraries/Common/src/Interop/Unix/System.Native/Interop.MountPoints.cs
src/libraries/Common/src/System/IO/DriveInfoInternal.Unix.cs [new file with mode: 0644]
src/libraries/Common/src/System/IO/DriveInfoInternal.Win32.cs [moved from src/libraries/System.IO.FileSystem/src/System/IO/Directory.Win32.cs with 67% similarity]
src/libraries/Common/src/System/IO/DriveInfoInternal.WinRT.cs [new file with mode: 0644]
src/libraries/System.IO.FileSystem.DriveInfo/src/System.IO.FileSystem.DriveInfo.csproj
src/libraries/System.IO.FileSystem.DriveInfo/src/System/IO/DriveInfo.Windows.cs
src/libraries/System.IO.FileSystem/src/System.IO.FileSystem.csproj
src/libraries/System.IO.FileSystem/src/System/IO/Directory.Unix.cs [deleted file]
src/libraries/System.IO.FileSystem/src/System/IO/Directory.WinRT.cs [deleted file]
src/libraries/System.IO.FileSystem/src/System/IO/Directory.cs
src/libraries/System.IO.FileSystem/src/System/IO/FileSystem.cs
src/libraries/System.IO.FileSystem/src/System/IO/MultiplexingWin32WinRTFileSystem.cs
src/libraries/System.IO.FileSystem/src/System/IO/UnixFileSystem.cs
src/libraries/System.IO.FileSystem/src/System/IO/Win32FileSystem.cs
src/libraries/System.IO.FileSystem/src/System/IO/WinRTFileSystem.cs
src/libraries/System.IO.FileSystem/tests/Directory/GetLogicalDrives.cs