mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
17 lines
347 B
C++
17 lines
347 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN {
|
|
SetDefaultCharset(CHARSET_UTF8);
|
|
|
|
const VectorMap<String, String>& map = Environment();
|
|
for(int i = 0; i < map.GetCount(); i++)
|
|
LOG(map.GetKey(i) << "=" << map[i]);
|
|
|
|
PromptOK(GetHomeDirFile("test"));
|
|
|
|
FileSel fs;
|
|
fs.AllFilesType();
|
|
fs.ExecuteOpen();
|
|
}
|