Update FolderStorageInfo record

This commit is contained in:
Joshua M. Boniface
2026-03-23 17:15:49 -04:00
parent 434ebc8b11
commit 418beafebb

View File

@@ -11,17 +11,22 @@ public record FolderStorageInfo
public required string Path { get; init; }
/// <summary>
/// Gets the free space of the underlying storage device of the <see cref="Path"/>.
/// Gets the fully resolved path of the folder in question (interpolating any symlinks if present)
/// </summary>
public required string ResolvedPath { get; init; }
/// <summary>
/// Gets the free space of the underlying storage device of the <see cref="ResolvedPath"/>.
/// </summary>
public long FreeSpace { get; init; }
/// <summary>
/// Gets the used space of the underlying storage device of the <see cref="Path"/>.
/// Gets the used space of the underlying storage device of the <see cref="ResolvedPath"/>.
/// </summary>
public long UsedSpace { get; init; }
/// <summary>
/// Gets the kind of storage device of the <see cref="Path"/>.
/// Gets the kind of storage device of the <see cref="ResolvedPath"/>.
/// </summary>
public string? StorageType { get; init; }