Navigation
API > API/Runtime > API/Runtime/NetworkFile
Inheritance Hierarchy
- IFileHandle
- FNetworkFileHandle
References
| Module | NetworkFile |
| Header | /Engine/Source/Runtime/NetworkFile/Public/NetworkPlatformFile.h |
| Include | #include "NetworkPlatformFile.h" |
Syntax
class FNetworkFileHandle : public IFileHandle
Constructors
| Type | Name | Description | |
|---|---|---|---|
FNetworkFileHandle
(
FNetworkPlatformFile& InNetwork, |
Overridden from IFileHandle
| Type | Name | Description | |
|---|---|---|---|
| bool | Flush
(
const bool bFullFlush |
Flushes file handle to disk. | |
| bool | Read
(
uint8* Destination, |
Read bytes from the file. | |
| bool | Seek
(
int64 NewPosition |
Change the current write or read position. | |
| bool | SeekFromEnd
(
int64 NewPositionRelativeToEnd |
Change the current write or read position, relative to the end of the file. | |
| int64 | Tell () |
Return the current write or read position. | |
| bool | Truncate
(
int64 NewSize |
Truncate the file to the given size (in bytes). | |
| bool | Write
(
const uint8* Source, |
Write bytes to the file. |