FileOpenWrite Method (String) |
Opens an existing file or creates a new file for writing.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static FileStream OpenWrite(
string path
)
Public Shared Function OpenWrite (
path As String
) As FileStream
public:
static FileStream^ OpenWrite(
String^ path
)
static member OpenWrite :
path : string -> FileStream
Parameters
- path
- Type: SystemString
The file to be opened for writing.
Return Value
Type:
FileStreamAn unshared
FileStream object on the specified path with
Write access.
See Also