Show Folder content in WebListBox?

Is it possible to list he content of a folder on my linux (web)server in a listbox?

Simplest way : shell to ls and put Result in the listbox.

More elaborate : use count and fetch the item names http://documentation.xojo.com/index.php/FolderItem.Count

Thank you @Michel Bujardet
It was easier then i thought :slight_smile:

[code] Dim currentFolder As FolderItem
currentFolder = GetFolderItem("").Parent.Parent.Child(“jdownloads”)

If currentFolder<>Nil And currentFolder.Exists Then
Dim intFileCount As Integer
intFileCount = currentFolder.Count

Dim intFile As Integer
For intFile = 1 To intFileCount
  
  ListBox1.AddRow currentFolder.Item(intFile).Name
  
Next

End If[/code]