ultimatepp/reference/FindAllPaths/FindAllPaths.cpp
cxl d17422521e .reference
git-svn-id: svn://ultimatepp.org/upp/trunk@15783 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-02-20 16:47:56 +00:00

11 lines
286 B
C++

#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
String dir = GetFileFolder(GetFileFolder(GetDataFile("x"))); // get nest directory for demo
DUMPC(FindAllPaths(dir));
DUMPC(FindAllPaths(dir, "*.h *.cpp"));
DUMPC(FindAllPaths(dir, "*", FINDALLFOLDERS));
}