Click or drag to resize
AbstractDirectory Class
Abstract class for directory providers.
Inheritance Hierarchy

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 10.0.0
Syntax
C#
public abstract class AbstractDirectory

The AbstractDirectory type exposes the following members.

Constructors
  NameDescription
Protected methodAbstractDirectory
Top
Methods
  NameDescription
Public methodCreateDirectory
Creates all directories and subdirectories as specified by path.
Public methodDelete(String)
Deletes an empty directory.
Public methodDelete(String, Boolean)
Deletes an empty directory and, if indicated, any subdirectories and files in the directory.
Public methodDeleteDirectoryStructure
Deletes all files in the directory structure. It works also in a shared hosting environment.
Public methodEnumerateDirectories(String)
Returns an enumerable collection of directory names in a specified path.
Public methodEnumerateDirectories(String, String)
Returns an enumerable collection of directory names that match a search pattern in a specified path.
Public methodEnumerateDirectories(String, String, SearchOption)
Returns an enumerable collection of directory names that match a search pattern in a specified path, and optionally searches subdirectories.
Public methodEnumerateFiles(String)
Returns an enumerable collection of file names in a specified path.
Public methodEnumerateFiles(String, String)
Returns an enumerable collection of file names that match a search pattern in a specified path.
Public methodExists
Determines whether the given path refers to an existing directory on disk.
Public methodGetAccessControl
Gets a DirectorySecurity object that encapsulates the access control list (ACL) entries for a specified directory.
Public methodGetCurrentDirectory
Gets the current working directory of the application.
Public methodGetDirectories(String)
Returns the names of subdirectories (including their paths) in the specified directory.
Public methodGetDirectories(String, String)
Returns the names of subdirectories (including their paths) that match the specified search pattern in the specified directory.
Public methodGetDirectories(String, String, SearchOption)
Gets the names of the subdirectories (including their paths) that match the specified search pattern in the current directory, and optionally searches subdirectories.
Public methodGetFiles(String)
Returns the names of files (including their paths) in the specified directory.
Public methodGetFiles(String, String)
Returns the names of files (including their paths) that match the specified search pattern in the specified directory.
Protected methodGetSearchCondition
Returns search condition delegate.
Public methodMove
Moves a file or a directory and its contents to a new location.
Public methodPrepareFilesForImport
Prepares files for import. Converts them to media library.
Top
See Also