コミュニティ

Can I Dynamically set the export path using script?

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

この記事は役に立ちましたか?

0人中0人がこの記事が役に立ったと言っています

コメント

3件のコメント

  • Avatar
    Permanently deleted user
    Hi William,

    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

    ....
    0
  • Avatar
    William Kelleher
    Maybe I wasnt clear, I need to modify the export path in the standard ODBC export during the processing at some point. I will retrieve it from a database based on the hot folder import folder. I did see the sample export project but we can use the standard ODBC export we just need to modify it per hot folder.
    0
  • Avatar
    Permanently deleted user
    Sorry for misunderstanding.

    So you have a database that holds information about export path and this export path value depends on the hotfolder image folder?
    0

サインインしてコメントを残してください。