Determines if the specified path points to a folder. Note that the path must exist.
You can use
FileExists(String) to determine if the file or folder exists.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static bool IsFolder(
string path
)
Public Shared Function IsFolder (
path As String
) As Boolean
Parameters
- path
- Type: SystemString
The path to the file or folder in question.
Return Value
Type:
BooleanTrue if the path specifies an existing folder.
See Also