C# Класс Utilities.IO.Extensions.DirectoryInfoExtensions

Extension methods for System.IO.DirectoryInfo
Показать файл Открыть проект

Открытые методы

Метод Описание
CopyTo ( this source, string destination, bool recursive = true, CopyOptions options = CopyOptions.CopyAlways ) : DirectoryInfo

Copies a directory to another location

DeleteAll ( this directory ) : void

Deletes directory and all content found within it

DeleteFiles ( this directory, bool recursive = false ) : DirectoryInfo

Deletes files from a directory

DeleteFilesNewerThan ( this directory, System.DateTime compareDate, bool recursive = false ) : DirectoryInfo

Deletes files newer than the specified date

DeleteFilesOlderThan ( this directory, System.DateTime compareDate, bool recursive = false ) : DirectoryInfo

Deletes files older than the specified date

SetAttributes ( this directory, FileAttributes attributes, bool recursive = false ) : DirectoryInfo

Sets a directory's attributes

Size ( this directory, string searchPattern = "*", bool recursive = false ) : long

Gets the size of all files within a directory

Описание методов

CopyTo() публичный статический Метод

Copies a directory to another location
public static CopyTo ( this source, string destination, bool recursive = true, CopyOptions options = CopyOptions.CopyAlways ) : DirectoryInfo
source this Source directory
destination string Destination directory
recursive bool Should the copy be recursive
options CopyOptions Options used in copying
Результат System.IO.DirectoryInfo

DeleteAll() публичный статический Метод

Deletes directory and all content found within it
public static DeleteAll ( this directory ) : void
directory this Directory info object
Результат void

DeleteFiles() публичный статический Метод

Deletes files from a directory
public static DeleteFiles ( this directory, bool recursive = false ) : DirectoryInfo
directory this Directory to delete the files from
recursive bool Should this be recursive?
Результат System.IO.DirectoryInfo

DeleteFilesNewerThan() публичный статический Метод

Deletes files newer than the specified date
public static DeleteFilesNewerThan ( this directory, System.DateTime compareDate, bool recursive = false ) : DirectoryInfo
directory this Directory to look within
compareDate System.DateTime The date to compare to
recursive bool Is this a recursive call
Результат System.IO.DirectoryInfo

DeleteFilesOlderThan() публичный статический Метод

Deletes files older than the specified date
public static DeleteFilesOlderThan ( this directory, System.DateTime compareDate, bool recursive = false ) : DirectoryInfo
directory this Directory to look within
compareDate System.DateTime The date to compare to
recursive bool Is this a recursive call
Результат System.IO.DirectoryInfo

SetAttributes() публичный статический Метод

Sets a directory's attributes
public static SetAttributes ( this directory, FileAttributes attributes, bool recursive = false ) : DirectoryInfo
directory this Directory
attributes FileAttributes Attributes to set
recursive bool Determines if this is a recursive call
Результат System.IO.DirectoryInfo

Size() публичный статический Метод

Gets the size of all files within a directory
public static Size ( this directory, string searchPattern = "*", bool recursive = false ) : long
directory this Directory
searchPattern string Search pattern used to tell what files to include (defaults to all)
recursive bool determines if this is a recursive call or not
Результат long