OpenTTD Source
20241108-master-g80f628063a
|
Helper for scanning for files with a given name. More...
#include <fileio_func.h>
Public Member Functions | |
virtual | ~FileScanner ()=default |
Destruct the proper one... | |
uint | Scan (std::string_view extension, Subdirectory sd, bool tars=true, bool recursive=true) |
Scan for files with the given extension in the given search path. More... | |
uint | Scan (std::string_view extension, const std::string &directory, bool recursive=true) |
Scan for files with the given extension in the given search path. More... | |
virtual bool | AddFile (const std::string &filename, size_t basepath_length, const std::string &tar_filename)=0 |
Add a file with the given filename. More... | |
Protected Attributes | |
Subdirectory | subdir |
The current sub directory we are searching through. | |
Helper for scanning for files with a given name.
Definition at line 37 of file fileio_func.h.
|
pure virtual |
Add a file with the given filename.
filename | the full path to the file to read |
basepath_length | amount of characters to chop of before to get a filename relative to the search path. |
tar_filename | the name of the tar file the file is read from. |
Implemented in ScriptFileChecksumCreator, LanguageScanner, ScenarioScanner, TarScanner, ScriptScanner, GRFFileScanner, FiosFileScanner, BaseMedia< Tbase_set >, BaseMedia< SoundsSet >, BaseMedia< MusicSet >, BaseMedia< GraphicsSet >, and SocialIntegrationFileScanner.
Referenced by ScanPath(), and ScanTar().
uint FileScanner::Scan | ( | std::string_view | extension, |
const std::string & | directory, | ||
bool | recursive = true |
||
) |
Scan for files with the given extension in the given search path.
extension | the extension of files to search for. |
directory | the sub directory to search in. |
recursive | whether to search recursively |
Definition at line 1156 of file fileio.cpp.
References AppendPathSeparator(), OTTD2FS(), and ScanPath().
uint FileScanner::Scan | ( | std::string_view | extension, |
Subdirectory | sd, | ||
bool | tars = true , |
||
bool | recursive = true |
||
) |
Scan for files with the given extension in the given search path.
extension | the extension of files to search for. |
sd | the sub directory to search in. |
tars | whether to search in the tars too. |
recursive | whether to search recursively |
Definition at line 1114 of file fileio.cpp.
Referenced by GRFFileScanner::DoScan(), BaseMedia< Tbase_set >::FindSets(), ScriptScanner::RescanDir(), ScenarioScanner::Scan(), and LanguageScanner::Scan().