Method | Description | |
---|---|---|
Copy ( string source, string destination, bool overwrite = true ) : void | ||
Delete ( string path ) : void | ||
Exists ( string path ) : bool | ||
GetFileName ( string path, bool includeExtension = true ) : string | ||
GetFullPath ( string path ) : string | ||
GetParentFolderPath ( string path, bool includeExtension = true ) : string | ||
Move ( string source, string destination, bool overwrite = true ) : void | ||
ReadAllBytes ( string path ) : byte[] | ||
Write ( string path, byte data, int length ) : void | ||
WriteAllBytes ( string path, byte data ) : void |
public static Copy ( string source, string destination, bool overwrite = true ) : void | ||
source | string | |
destination | string | |
overwrite | bool | |
return | void |
public static GetFileName ( string path, bool includeExtension = true ) : string | ||
path | string | |
includeExtension | bool | |
return | string |
public static GetFullPath ( string path ) : string | ||
path | string | |
return | string |
public static GetParentFolderPath ( string path, bool includeExtension = true ) : string | ||
path | string | |
includeExtension | bool | |
return | string |
public static Move ( string source, string destination, bool overwrite = true ) : void | ||
source | string | |
destination | string | |
overwrite | bool | |
return | void |
public static ReadAllBytes ( string path ) : byte[] | ||
path | string | |
return | byte[] |
public static Write ( string path, byte data, int length ) : void | ||
path | string | |
data | byte | |
length | int | |
return | void |
public static WriteAllBytes ( string path, byte data ) : void | ||
path | string | |
data | byte | |
return | void |