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#
public bool ObjectExists(
	string path
)
Visual Basic
Public Function ObjectExists ( 
	path As String
) As Boolean
Visual C++
public:
virtual bool ObjectExists(
	String^ path
) sealed
F#
abstract ObjectExists : 
        path : string -> bool 
override ObjectExists : 
        path : string -> bool 

Parameters

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

Return Value

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

Implements

IFileContentProvider..::..ObjectExists(String)

See Also