Skip to content

Commit

Permalink
docs: clarify meaning of the FileSystem property (#1175)
Browse files Browse the repository at this point in the history
for #1173
  • Loading branch information
montoner0 authored Dec 15, 2024
1 parent 26ce84f commit 7ade63c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/TestableIO.System.IO.Abstractions/IFileSystemInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ public interface IFileSystemInfo
/// <summary>
/// Exposes the underlying filesystem implementation. This is useful for implementing extension methods.
/// </summary>
/// <remarks>
/// The property is always a global object related to the global current directory.
/// </remarks>
IFileSystem FileSystem { get; }

/// <inheritdoc cref="FileSystemInfo.Attributes" />
Expand Down Expand Up @@ -74,4 +77,4 @@ UnixFileMode UnixFileMode
IFileSystemInfo? ResolveLinkTarget(bool returnFinalTarget);
#endif
}
}
}

0 comments on commit 7ade63c

Please sign in to comment.