GetFiles()
Contents
[
Hide
]DirectoryInfo::GetFiles() method
Returns an array containing shared pointers to FileInfo objects representing all directories located in the directory represented by the current object.
ArrayPtr<FileInfoPtr> System::IO::DirectoryInfo::GetFiles()
DirectoryInfo::GetFiles(const String&) method
Searches for the files that satisfy the specified search criteria in the directory represented by the current object.
ArrayPtr<FileInfoPtr> System::IO::DirectoryInfo::GetFiles(const String &searchPattern)
Arguments
Parameter | Type | Description |
---|---|---|
searchPattern | const String& | The name pattern of the files to search for |
Return Value
An array of shared pointers to FileInfo objects representing the found files whose names match searchPattern
DirectoryInfo::GetFiles(const String&, SearchOption) method
Searches for the files that satisfy the specified search criteria either in the directory represented by the current object or in the whole directory tree rooted in the directory represented by the current object.
ArrayPtr<FileInfoPtr> System::IO::DirectoryInfo::GetFiles(const String &searchPattern, SearchOption searchOption)
Arguments
Parameter | Type | Description |
---|---|---|
searchPattern | const String& | The name pattern of the files to search for |
searchOption | SearchOption | Specifies whether the search has to be performed in the directory represented by the current object only or in the whole directory tree rooted in the directory represented by the current object |
Return Value
An array of shared pointers to FileInfo objects representing the found files whose names match searchPattern
See Also
- Enum SearchOption
- Typedef ArrayPtr
- Typedef FileInfoPtr
- Class DirectoryInfo
- Class String
- Namespace System::IO
- Library Aspose.Slides