FileSystemUtil/FileSystemUtil.h

11 lines
333 B
C++

#pragma once
#include <string>
#include <functional>
/// Declaration
/// Set 'skiplevel' to <1 to stop skipping.
/// Set 'maxlevel' to <1 to ignore max level.
void FindFileRev(const std::string& dirname,
const int skiplevel,const int maxlevel,
const std::function<void(const std::string&)>& func);