Check if the specified file exists.

syntaxSyntax:
DlxFile.Exist()

Return Value

If the specified file exists it returns true otherwise it returns false.

Example

  Copy codeCopy code
var file = new DlxFile("demofile.txt");
if (file.Exist())
{
}

See also