create_folder(folder_type, folder_name [, parent_folder_id])
Description
creates a new folder and returns the newly created folder id
folder_type: 1:checkmark 2:date 3:number 4:text 5:popup
Example
x=get_folder_id('Release')
y=create_folder(1,'Test',x)
msgbox(y)
- In this example the folder od for the folder Release is obtained and set to x
- a new checkmark folder Test is created and placed under Release, as a child folder to Release
- the message box displays the value of the folder id, y
Related Commands
get_folder_id(),
set_folder_value()