FolderItem.Children

From Xojo Documentation

Method

FolderItem.Children(followAlias as Boolean = True) As Iterable

New in 2019r2

Supported for all project types and targets.

Allows you to iterate through all the files in a folder.

Examples

This example adds the names of all the files on the desktop to a listbox:

Var DesktopFiles As FolderItem = SpecialFolder.Desktop
For Each file As FolderItem In DesktopFiles.Children
Listbox1.AddRow(file.Name)
Next