FileOpenText Method (String) |
Opens an existing UTF-8 encoded text file for reading.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.2
Syntax public static StreamReader OpenText(
string path
)
Public Shared Function OpenText (
path As String
) As StreamReader
public:
static StreamReader^ OpenText(
String^ path
)
static member OpenText :
path : string -> StreamReader
Parameters
- path
- Type: SystemString
The file to be opened for reading.
Return Value
Type:
StreamReaderA
StreamReader on the specified path.
Remarks This method is equivalent to the
StreamReader(String) constructor overload.
See Also