FileOpenText Method (String, Encoding, PathFormat) |
[AlphaFS] Opens an existing
Encoding encoded text file for reading.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static StreamReader OpenText(
string path,
Encoding encoding,
PathFormat pathFormat
)
Public Shared Function OpenText (
path As String,
encoding As Encoding,
pathFormat As PathFormat
) As StreamReader
public:
static StreamReader^ OpenText(
String^ path,
Encoding^ encoding,
PathFormat pathFormat
)
static member OpenText :
path : string *
encoding : Encoding *
pathFormat : PathFormat -> StreamReader
Parameters
- path
- Type: SystemString
The file to be opened for reading. - encoding
- Type: System.TextEncoding
The Encoding applied to the contents of the file. - pathFormat
- Type: Alphaleonis.Win32.FilesystemPathFormat
Indicates the format of the path parameter(s).
Return Value
Type:
StreamReaderA
StreamReader on the specified path.
See Also