C# Class Utilities.IO.Extensions.DirectoryInfoExtensions

Extension methods for System.IO.DirectoryInfo
Mostra file Open project: feanz/Utilities

Public Methods

Method Description
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

Method Details

CopyTo() public static method

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
return System.IO.DirectoryInfo

DeleteAll() public static method

Deletes directory and all content found within it
public static DeleteAll ( this directory ) : void
directory this Directory info object
return void

DeleteFiles() public static method

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?
return System.IO.DirectoryInfo

DeleteFilesNewerThan() public static method

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
return System.IO.DirectoryInfo

DeleteFilesOlderThan() public static method

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
return System.IO.DirectoryInfo

SetAttributes() public static method

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
return System.IO.DirectoryInfo

Size() public static method

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
return long