DirectoryEnumerateFileIdBothDirectoryInfo Method (String, FileShare, PathFormat) |
[AlphaFS] Retrieves information about files in the directory specified by
path in specified
FileShare mode.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static IEnumerable<FileIdBothDirectoryInfo> EnumerateFileIdBothDirectoryInfo(
string path,
FileShare shareMode,
PathFormat pathFormat
)
Public Shared Function EnumerateFileIdBothDirectoryInfo (
path As String,
shareMode As FileShare,
pathFormat As PathFormat
) As IEnumerable(Of FileIdBothDirectoryInfo)
public:
static IEnumerable<FileIdBothDirectoryInfo^>^ EnumerateFileIdBothDirectoryInfo(
String^ path,
FileShare shareMode,
PathFormat pathFormat
)
static member EnumerateFileIdBothDirectoryInfo :
path : string *
shareMode : FileShare *
pathFormat : PathFormat -> IEnumerable<FileIdBothDirectoryInfo>
Parameters
- path
- Type: SystemString
A path to a directory from which to retrieve information. - shareMode
- Type: System.IOFileShare
The FileShare mode with which to open a handle to the directory. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
IEnumerableFileIdBothDirectoryInfoAn enumeration of
FileIdBothDirectoryInfo records for each file system entry in the specified diretory.
See Also