FZ_FormBase.IsExistDirectory
Checks if the directory is exist
Public Shared Function IsExistDirectory( _
ByVal directoryName As String _
) As Integer
Parameters
directoryName
|
Directory name
|
Input
|
Return Value
The information of the directory whether is exist.
False: Specified directory is not exist
True : Specified directory is exist
Description
Checks if the directory is exist.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
' Checks if the directory is exist
IsExistDirectory("abcd")
End Sub