Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FGenericPlatformProcess
Description
Reads all pending data from an anonymous pipe, such as STDOUT or STDERROR of a process.
| Name | ReadPipeToArray |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformProcess.h |
| Include Path | #include "GenericPlatform/GenericPlatformProcess.h" |
| Source | /Engine/Source/Runtime/Core/Private/GenericPlatform/GenericPlatformProcess.cpp |
static bool ReadPipeToArray
(
void * ReadPipe,
TArray < uint8 > & Output
)
true if successful (i.e. any data was read)
Parameters
| Name | Remarks |
|---|---|
| Pipe | The handle to the pipe to read from. |
| Output | The data read. |