mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
.reference
git-svn-id: svn://ultimatepp.org/upp/trunk@15783 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
e210cc484e
commit
d17422521e
2 changed files with 20 additions and 0 deletions
11
reference/FindAllPaths/FindAllPaths.cpp
Normal file
11
reference/FindAllPaths/FindAllPaths.cpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#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));
|
||||
}
|
||||
9
reference/FindAllPaths/FindAllPaths.upp
Normal file
9
reference/FindAllPaths/FindAllPaths.upp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
uses
|
||||
Core;
|
||||
|
||||
file
|
||||
FindAllPaths.cpp;
|
||||
|
||||
mainconfig
|
||||
"" = "";
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue