Example: Folder exists
This example creates the folder
Machine1\Motor1
if it does not exist.Sub CreateTagDBFolder() If Not (TagDB.FolderExists("Machine1\Motor1")) Then TagDB.CreateFolder "Machine1\Motor1" End If End Sub
Provide Feedback