System::IO::DirectoryInfo::GetFileSystemInfos method
DirectoryInfo::GetFileSystemInfos() method
Returns an array containing shared pointers to FileSystemInfo objects representing all files and directories located in the directory represented by the current object.
ArrayPtr<FileSystemInfoPtr> System::IO::DirectoryInfo::GetFileSystemInfos()
See Also
- Typedef ArrayPtr
- Typedef FileSystemInfoPtr
- Class DirectoryInfo
- Namespace System::IO
- Library Aspose.TeX for C++
DirectoryInfo::GetFileSystemInfos(const String&) method
Searches for the files and directories that satisfy the specified search criteria in the directory represented by the current object.
ArrayPtr<FileSystemInfoPtr> System::IO::DirectoryInfo::GetFileSystemInfos(const String &searchPattern)
Parameter | Type | Description |
---|---|---|
searchPattern | const String& | The name pattern of the files and directories to search for |
ReturnValue
An array of shared pointers to FileSystemInfo objects representing the found files and directories whose names match searchPattern
See Also
- Typedef ArrayPtr
- Typedef FileSystemInfoPtr
- Class String
- Class DirectoryInfo
- Namespace System::IO
- Library Aspose.TeX for C++
DirectoryInfo::GetFileSystemInfos(const String&, SearchOption) method
Searches for the files and directories 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<FileSystemInfoPtr> System::IO::DirectoryInfo::GetFileSystemInfos(const String &searchPattern, SearchOption searchOption)
Parameter | Type | Description |
---|---|---|
searchPattern | const String& | The name pattern of the files and directories 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 |
ReturnValue
An array of shared pointers to FileSystemInfo objects representing the found files and directories whose names match searchPattern
See Also
- Typedef ArrayPtr
- Typedef FileSystemInfoPtr
- Class String
- Enum SearchOption
- Class DirectoryInfo
- Namespace System::IO
- Library Aspose.TeX for C++