FileReadAllBytes Method (String) |
Opens a binary file, reads the contents of the file into a byte array, and then closes the file.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static byte[] ReadAllBytes(
string path
)
Public Shared Function ReadAllBytes (
path As String
) As Byte()
public:
static array<unsigned char>^ ReadAllBytes(
String^ path
)
static member ReadAllBytes :
path : string -> byte[]
Parameters
- path
- Type: SystemString
The file to open for reading.
Return Value
Type:
ByteA byte array containing the contents of the file.
See Also