FileReadAllText Method (KernelTransaction, String) |
[AlphaFS] Opens a text file, reads all lines of the file, and then closes the file.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static string ReadAllText(
KernelTransaction transaction,
string path
)
Public Shared Function ReadAllText (
transaction As KernelTransaction,
path As String
) As String
public:
static String^ ReadAllText(
KernelTransaction^ transaction,
String^ path
)
static member ReadAllText :
transaction : KernelTransaction *
path : string -> string
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to open for reading.
Return Value
Type:
StringAll lines of the file.
See Also