Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FCachedReadPlatformFile
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual bool IterateDirectory
(
const TCHAR* Directory, |
Call the Visit function of the visitor once for each file or directory in a single directory. | HAL/IPlatformFileCachedWrapper.h | |
virtual bool IterateDirectory
(
const TCHAR* Directory, |
Call the visitor once for each file or directory in a single directory. | HAL/IPlatformFileCachedWrapper.h |
IterateDirectory(const TCHAR *, IPlatformFile::FDirectoryVisitor &)
Description
Call the Visit function of the visitor once for each file or directory in a single directory. This function does not explore subdirectories.
| Name | IterateDirectory |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IPlatformFileCachedWrapper.h |
| Include Path | #include "HAL/IPlatformFileCachedWrapper.h" |
virtual bool IterateDirectory
(
const TCHAR * Directory,
IPlatformFile::FDirectoryVisitor & Visitor
)
false if the directory did not exist or if the visitor returned false.
Parameters
| Name | Remarks |
|---|---|
| Directory | The directory to iterate the contents of. |
| Visitor | Visitor to call for each element of the directory |
IterateDirectory(const TCHAR *, FDirectoryVisitorFunc)
Description
Call the visitor once for each file or directory in a single directory. This function does not explore subdirectories.
| Name | IterateDirectory |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/IPlatformFileCachedWrapper.h |
| Include Path | #include "HAL/IPlatformFileCachedWrapper.h" |
| Source | /Engine/Source/Runtime/Core/Private/GenericPlatform/GenericPlatformFile.cpp |
virtual bool IterateDirectory
(
const TCHAR * Directory,
FDirectoryVisitorFunc Visitor
)
false if the directory did not exist or if the visitor returned false.
Parameters
| Name | Remarks |
|---|---|
| Directory | The directory to iterate the contents of. |
| Visitor | Visitor to call for each element of the directory (see FDirectoryVisitor::Visit for the signature) |