C# Class Utilities.IO.Extensions.DirectoryInfoExtensions

Extension methods for System.IO.DirectoryInfo
Afficher le fichier Open project: feanz/Utilities

Méthodes publiques

Méthode 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 méthode

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
Résultat System.IO.DirectoryInfo

DeleteAll() public static méthode

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

DeleteFiles() public static méthode

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?
Résultat System.IO.DirectoryInfo

DeleteFilesNewerThan() public static méthode

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
Résultat System.IO.DirectoryInfo

DeleteFilesOlderThan() public static méthode

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
Résultat System.IO.DirectoryInfo

SetAttributes() public static méthode

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
Résultat System.IO.DirectoryInfo

Size() public static méthode

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
Résultat long