IFileSystemInfo Interface

Summary

Represents an entry in the file system.
Namespace
Cake.Core.IO
Implementing Types
graph BT Type["IFileSystemInfo"] class Type type-node Implementing0["IFile"]-.->Type click Implementing0 "/api/Cake.Core.IO/IFile" Implementing1["IDirectory"]-.->Type click Implementing1 "/api/Cake.Core.IO/IDirectory" Implementing2["FakeDirectory"]-.->Type click Implementing2 "/api/Cake.Testing/FakeDirectory" Implementing3["FakeFile"]-.->Type click Implementing3 "/api/Cake.Testing/FakeFile"

Syntax

public interface IFileSystemInfo

Properties

Name Value Summary
CreationTimeUtc DateTime?
Gets the date and time, in Coordinated Universal Time (UTC), that the file was created.
Exists bool
Gets a value indicating whether this IFileSystemInfo exists.
Hidden bool
Gets a value indicating whether this IFileSystemInfo is hidden.
LastAccessTimeUtc DateTime?
Gets the date and time, in Coordinated Universal Time (UTC), that the file was last accessed.
LastWriteTimeUtc DateTime?
Gets the date and time, in Coordinated Universal Time (UTC), that the file was last written to.
Path Path
Gets the path to the entry.
UnixFileMode UnixFileMode?
Gets the Unix file mode of the entry.

Extension Methods

Name Value Summary
Dump<IFileSystemInfo>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
IsIn<IFileSystemInfo>(IFileSystemInfo[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<IFileSystemInfo>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
NotNull<IFileSystemInfo>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
ThrowIfNull<IFileSystemInfo>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<IFileSystemInfo>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin
ToStringWithNullMarkup() string
Returns the string value or a Not set> markup suitable for Spectre.Console.
Requires the Cake.Issues addin