HI All,
I have code to merge the PDF files. Now Instead of storing the combined PDF on some shared drive, can we store in the repository and have it accessible to the users from the repository?
Thanks,
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Yes, offhand I would recommend you pull down the files you need from the repository and save them to a temporary location. Then manipulate them to create the merged PDF in the temporary directory and upload the merged PDF to the repository. After that, you can delete all the files from the temporary location.
At some point, the content has to be taken from the repository and put in a temporary directory. Even Documentum does this when caching files.
Hi techrek.
You can simple create a new document object and add the PDF file as its content using setFile. Don't forget to link the document to a folder so a user can browse to it.
Christine
can you please provide me the code as to how to use SetfFile?
http://developer-content.emc.com/developer/dfc_methods/setFile.html
Thank you so much guys...
Does it mean that we have to write the file first to some location and then save it in repository? We cannot directly merge all the PDF from the repository and create a new (merged PDF) file directly into repositroy?
Thanks!!!