VFile.OpenWrite Method
Namespace: Rebex.IO
Assembly: Rebex.FileSystem.dll (version 7.0.9119)
OpenWrite(String)
Method returns an instance of the write-only VFileStream
for a file identified by the path
.
A caller must dispose the returned stream.
Calling the method is equivalent to calling the method Open(String, FileMode, FileAccess)
with arguments Open(path, FileMode.OpenOrCreate, FileAccess.Write).
Declaration
public static VFileStream OpenWrite(string path)
Parameters
Type | Name | Description |
---|---|---|
String | path | The path of the file. |
Returns
Type | Description |
---|---|
VFileStream | An instance of the write-only VFileStream
for a file identified by the |