Loading [MathJax]/extensions/MathMenu.js
Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Filesystem.cxx File Reference
#include <Filesystem.hxx>
#include <Settings.hxx>
#include <LOG.hxx>
#include <fstream>
#include "compression.hxx"
#include <SDL.h>
+ Include dependency graph for Filesystem.cxx:

Go to the source code of this file.

Namespaces

 fs
 

Functions

template<typename Callback >
void forEachFileType (fs::path &&path, std::string &&extension, Callback callback)
 

Function Documentation

◆ forEachFileType()

template<typename Callback >
void forEachFileType ( fs::path &&  path,
std::string &&  extension,
Callback  callback 
)

Definition at line 26 of file Filesystem.cxx.

27 {
28  for (const auto &fp : fs::directory_iterator(path))
29  {
30  if (static_cast<fs::path>(fp).extension() == extension)
31  {
32  callback(fp);
33  }
34  }
35 }