DriveInfoInternal.Unix.cs 525 B

123456789101112131415
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Diagnostics;
  5. using System.Text;
  6. namespace System.IO
  7. {
  8. /// <summary>Contains internal volume helpers that are shared between many projects.</summary>
  9. internal static partial class DriveInfoInternal
  10. {
  11. internal static string[] GetLogicalDrives() => Interop.Sys.GetAllMountPoints();
  12. }
  13. }