DirectoryInfoGetFileSystemInfos Method |
Returns an array of strongly typed
FileSystemInfo entries representing all the files and subdirectories in a directory.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public FileSystemInfo[] GetFileSystemInfos()
Public Function GetFileSystemInfos As FileSystemInfo()
public:
array<FileSystemInfo^>^ GetFileSystemInfos()
member GetFileSystemInfos : unit -> FileSystemInfo[]
Return Value
Type:
FileSystemInfoAn array of strongly typed
FileSystemInfo entries.
Remarks Remarks
If there are no files or directories in the DirectoryInfo, this method returns an empty array. This method is not recursive.
For subdirectories, the FileSystemInfo objects returned by this method can be cast to the derived class DirectoryInfo.
Use the FileAttributes value returned by the Attributes property to determine whether the FileSystemInfo represents a file or a directory.
See Also