To fill a listbox (start of layout) with the contents of my "AppPath" I can use:
+ File: For each file in AppPath
-> ListBox_main: Add line File.CurFile
Is there a way to filter it ? say...only include a file if its a extension is ".png" or "png"
I assumed the following would work:
+ File: For each file in AppPath
+ System: GetToken(File.CurFile,1, ".") Equal to ".png"
-> ListBox_main: Add line File.CurFile
It doesnt!