2026-08-08 14:07:56 +08:00
|
|
|
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)!;
|
|
|
|
|
}
|