Takes three parameters, FolderPath, Action, Source
Usage:
FolderPath, Action, Source
FolderPath, Action, [""]
Description:
The Folder Top Query command will also allow for non-Work Query based execution, performing the single operation specified.
List of Actions:
If the Top Query field Error does not already exist when this command is run, it will be created. If it does exist, it will be cleared before the specified Action is run. If an error occurs, a runtime error will be thrown, which may be caught with a Try/Catch block and the error string can be inspected or reported using the Top Query Error field.
Examples:
Try
Folder ("Public/Docs/" & Alias), "New"
Catch
HtmlErr ("Sorry, we found an error: " & Error)
End Try
Folder (folderPath & "/" & New.Folder.Name), "Rename", (folderPath & "/" & Old.Folder.Name)