| FileExists Method (String) |
Checks whether the file at the specified path exists on the file system.
Namespace:
Galactic.FileSystem
Assembly:
Galactic.FileSystem (in Galactic.FileSystem.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static bool Exists(
string path
)
Public Shared Function Exists (
path As String
) As Boolean
public:
static bool Exists(
String^ path
)
static member Exists :
path : string -> bool
Parameters
- path
- Type: SystemString
The path to the file to check.
Return Value
Type:
BooleanTrue if it exists, false otherwise.
See Also