Checks if a file system object exists.

Namespace: MonoSoftware.MonoX.FileSystem
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
bool ObjectExists(
	string path
)
Visual Basic
Function ObjectExists ( 
	path As String
) As Boolean
Visual C++
bool ObjectExists(
	String^ path
)
F#
abstract ObjectExists : 
        path : string -> bool 

Parameters

path
Type: System..::..String
Full path.

Return Value

Type: Boolean
True if an object exists, false otherwise.

See Also