From 7ade63c177fc57c9f3aa777eb3c48b6202b4a11e Mon Sep 17 00:00:00 2001 From: montoner0 Date: Sun, 15 Dec 2024 11:01:07 +0300 Subject: [PATCH] docs: clarify meaning of the FileSystem property (#1175) for #1173 --- src/TestableIO.System.IO.Abstractions/IFileSystemInfo.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/TestableIO.System.IO.Abstractions/IFileSystemInfo.cs b/src/TestableIO.System.IO.Abstractions/IFileSystemInfo.cs index 8f2416451..9850790d7 100644 --- a/src/TestableIO.System.IO.Abstractions/IFileSystemInfo.cs +++ b/src/TestableIO.System.IO.Abstractions/IFileSystemInfo.cs @@ -8,6 +8,9 @@ public interface IFileSystemInfo /// /// Exposes the underlying filesystem implementation. This is useful for implementing extension methods. /// + /// + /// The property is always a global object related to the global current directory. + /// IFileSystem FileSystem { get; } /// @@ -74,4 +77,4 @@ UnixFileMode UnixFileMode IFileSystemInfo? ResolveLinkTarget(bool returnFinalTarget); #endif } -} \ No newline at end of file +}