mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
14 lines
255 B
C++
14 lines
255 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
DUMP(PatternMatch("*.tpp", "test.tppi"));
|
|
|
|
SaveFile("u:/test.tpp", "");
|
|
SaveFile("u:/test.tppi", "");
|
|
for(FindFile ff("u:/*.tpp"); ff; ff.Next())
|
|
DUMP(ff.GetName());
|
|
}
|
|
|