| FileMove Method (String, String) |
Moves a file to a new location.
Namespace:
Galactic.FileSystem
Assembly:
Galactic.FileSystem (in Galactic.FileSystem.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static bool Move(
string path,
string newPath
)
Public Shared Function Move (
path As String,
newPath As String
) As Boolean
public:
static bool Move(
String^ path,
String^ newPath
)
static member Move :
path : string *
newPath : string -> bool
Parameters
- path
- Type: SystemString
The path of the file to move. - newPath
- Type: SystemString
The destination path to move the file to.
Return Value
Type:
BooleanTrue if the file was moved. False otherwise.
See Also