VFileInfo.Open Method
Namespace: Rebex.IO
Assembly: Rebex.FileSystem.dll (version 7.0.9147)
Open(FileMode)
Method returns an instance of the VFilemode
.
A caller must dispose the returned stream.
Declaration
public VFileStream Open(FileMode mode)
Parameters
Returns
Type | Description |
---|---|
VFile |
An instance of the VFile |
Open(FileMode, FileAccess)
Method returns an instance of the VFilemode
and requested access
.
A caller must dispose the returned stream.
Declaration
public VFileStream Open(FileMode mode, FileAccess access)
Parameters
Type | Name | Description |
---|---|---|
File |
mode | One of the File |
File |
access | One of the File |
Returns
Type | Description |
---|---|
VFile |
An instance of the VFile |
Open(FileMode, FileAccess, FileShare)
Method returns an instance of the VFilemode
and requested access
.
A caller must dispose the returned stream.
Declaration
public VFileStream Open(FileMode mode, FileAccess access, FileShare share)
Parameters
Type | Name | Description |
---|---|---|
File |
mode | One of the File |
File |
access | One of the File |
File |
share | This argument is ignored. Concurrent access to the same virtual file is not supported and leads to undefined behavior. |
Returns
Type | Description |
---|---|
VFile |
An instance of the VFile |
Remarks
Concurrent access to the same virtual file is not supported and leads to undefined behavior.