Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FFileManagerGeneric
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual bool IterateDirectoryRecursively
(
const TCHAR* Directory, |
Call the Visit function of the visitor once for each file or directory in a directory tree. | HAL/FileManagerGeneric.h | |
virtual bool IterateDirectoryRecursively
(
const TCHAR* Directory, |
Call the Visit function of the visitor once for each file or directory in a directory tree. | HAL/FileManagerGeneric.h |
IterateDirectoryRecursively(const TCHAR *, IPlatformFile::FDirectoryVisitor &)
Description
Call the Visit function of the visitor once for each file or directory in a directory tree. This function explores subdirectories.
| Name | IterateDirectoryRecursively |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/FileManagerGeneric.h |
| Include Path | #include "HAL/FileManagerGeneric.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/FileManagerGeneric.cpp |
virtual bool IterateDirectoryRecursively
(
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, recursively. |
| Visitor | Visitor to call for each element of the directory and each element of all subdirectories. |
IterateDirectoryRecursively(const TCHAR *, IPlatformFile::FDirectoryVisitorFunc)
Description
Call the Visit function of the visitor once for each file or directory in a directory tree. This function explores subdirectories.
| Name | IterateDirectoryRecursively |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/HAL/FileManagerGeneric.h |
| Include Path | #include "HAL/FileManagerGeneric.h" |
| Source | /Engine/Source/Runtime/Core/Private/HAL/FileManagerGeneric.cpp |
virtual bool IterateDirectoryRecursively
(
const TCHAR * Directory,
IPlatformFile::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, recursively. |
| Visitor | Visitor to call for each element of the directory and each element of all subdirectories (see FDirectoryVisitor::Visit for the signature). |