Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 a 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
}
}
}
Loading