Checks if the path is physical (format like "c:\something") or virtual

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

Syntax

C#
public static bool IsPhysicalPath(
	string path
)
Visual Basic
Public Shared Function IsPhysicalPath ( 
	path As String
) As Boolean
Visual C++
public:
static bool IsPhysicalPath(
	String^ path
)
F#
static member IsPhysicalPath : 
        path : string -> bool 

Parameters

path
Type: System..::..String
File path

Return Value

Type: Boolean
True if

See Also