| FileSystemClientOpenFile Method |
Opens the specified file on the file system for reading.
Namespace:
Ookii.Jumbo.Dfs.FileSystem
Assembly:
Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 2.0.0
Syntax public abstract Stream OpenFile(
string path
)
Public MustOverride Function OpenFile (
path As String
) As Stream
public:
virtual Stream^ OpenFile(
String^ path
) abstract
abstract OpenFile :
path : string -> Stream
Parameters
- path
- Type: SystemString
The path of the file.
Return Value
Type:
StreamA
Stream that can be used to read the contents of the file.
See Also