FZ_FormBase.IsExistFile

Checks if the file is exist

Public Shared Function IsExistFile( _
    ByVal fileName As String _
) As Integer

Parameters
fileName
file name
Input

Return Value
The information of the file whether is exist.
False: Specified file is not exist
True : Specified file is exist

Description
Checks if the file is exist.

Example
    Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

        ' Checks if the file is exist
        IsExistFile("abcd")

    End Sub