Hi,
I have set up a VB.net script to export and import a briefcase file. The briefcase contains a folder, subfolders and documents.
When exporting I am using the following condition:
'Create briefcase & add entries
Dim myBriefcase as New BriefcaseExporter(RASession)
myBriefcase.AddEntry(myEntry,BriefcaseSourceOptions.RecurseFolders)
'Briefcase export
Try
myBriefcase.Export(exportPath)
Catch e as Exception
errorCheck = True
errorMessage = "Briefcase export error. " & e.ToString
End Try
When I manually import the briefcase it works fine but when I attempt to import via a script it does not import the subfolders and documents, only the root folder in the briefcase.
Is there a condition similar to the export I need to specify to solve this?
Thanks,
Dom