Klugier Messages: 1099 Registered: September 2012 Location: Poland, Kraków
Senior Contributor
Hello Sayem,
Sure it is possible. You should use TreeCtrl. Here is example how to use it with file system. The example is bundled with standard upp distribution and it is located in reference assembly (reference/TreeCtrl).
Klugier Messages: 1099 Registered: September 2012 Location: Poland, Kraków
Senior Contributor
Hello Sayem,
Quote:
Thank you very much. It puts up a lot of burden
Yes that's true. For Linux it is reading /usr directory and for Windows it reads "C://". All these directories have a lot of files. If you want to limit that behaviour just replace following lines with appropriate directory in the example:
#ifdef PLATFORM_WIN32
String dir = String(GetExeFilePath()[0], 1) + ":\\";
#else
String dir = "/usr";
#endif
Thank you for that . Now I can successfully test that on other platform. I'm trying to replace theIDE file list with tree file as it is much better and comfortable for me to see and work with.