FolderItem.CreateFolder

From Xojo Documentation

Method

FolderItem.CreateFolder()

New in 2019r2.1

Supported for all project types and targets.

Creates a folder at the location specified by the FolderItem.

Notes

An IOException is raised if an error occurs.

Example

Create a folder in Documents:

Var myDataFolder As FolderItem = SpecialFolder.Documents.Child("MyData")
myDataFolder.CreateFolder