Files

12 lines
297 B
C#
Raw Permalink Normal View History

using System;
using System.IO;
namespace PCL.Core.Utils.OS;
public static class SystemPaths {
/// <summary>
/// 系统盘符(含冒号和反斜杠),例如 "C:\"。
/// </summary>
public static string DriveLetter { get; } = Path.GetPathRoot(Environment.SystemDirectory)!;
}