I have looked through various places in the help files and I don’t see where I can retrieve or set the export path. We want to read all of our settings from a database and set that during document creation or even later in another process before the export.
Thanks in advance
Thanks in advance
Comments
3 comments
There is sample of export path in help files. Please look into sample script describing export :
dim fso, folderName
set fso = CreateObject("Scripting.FileSystemObject")
folderName = "d:\ExportImages"
if Not fso.FolderExists( folderName ) then
fso.CreateFolder folderName
end if
....
So you have a database that holds information about export path and this export path value depends on the hotfolder image folder?
Please sign in to leave a comment.