FLoggedFileHandle

Windows
MacOS
Linux

Inheritance Hierarchy

IFileHandle

FLoggedFileHandle

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/HAL/IPlatformFileLogWrapper.h

Include

#include "HAL/IPlatformFileLogWrapper.h"

Syntax

class FLoggedFileHandle : public IFileHandle

Constructors

Name Description

Public function

FLoggedFileHandle

(
    IFileHandle* InFileHandle,
    const TCHAR* InFilename,
    FLoggedPlatformFile& InOwner
)

Destructors

Name Description

Public function Virtual

~FLoggedFileHandle()

Overridden from IFileHandle

Name Description

Public function Virtual

bool

 

Flush

(
    const bool bFullFlush
)

Flushes file handle to disk.

Public function Virtual

bool

 

Read

(
    uint8* Destination,
    int64 BytesToRead
)

Read bytes from the file.

Public function Virtual

bool

 

Seek

(
    int64 NewPosition
)

Change the current write or read position.

Public function Virtual

bool

 

SeekFromEnd

(
    int64 NewPositionRelativeToEnd
)

Change the current write or read position, relative to the end of the file.

Public function Virtual

int64

 

Size()

Return the total size of the file

Public function Virtual

int64

 

Tell()

Return the current write or read position.

Public function Virtual

bool

 

Truncate

(
    int64 NewSize
)

Truncate the file to the given size (in bytes).

Public function Virtual

bool

 

Write

(
    const uint8* Source,
    int64 BytesToWrite
)

Write bytes to the file.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss