Click or drag to resize
AbstractDirectoryGetFiles Method (String)
Returns the names of files (including their paths) in the specified directory.

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 10.0.0
Syntax
C#
public virtual string[] GetFiles(
	string path
)

Parameters

path
Type: SystemString
The relative or absolute path to the directory to search. This string is not case-sensitive.

Return Value

Type: String
An array of the full names (including paths) for the files in the specified directory, or an empty array if no files are found.
Remarks
This method is identical to GetFiles(String, String) with the asterisk (*) specified as the search pattern.
See Also