I want to create a script which uses pdftk to add a watermark stamp to pdf files. After the stamp is applied the output file doesn't need to be renamed
My problem is I don't know what the file name will be called, and pdftk requires a different file name for the input and output files.
The syntax for pdftk is simple enough:
pdftk inputfile.pdf stamp watermark.pdf output outputfile.pdf
I feel like this should be a trivial thing to do using vbs but I'm scratching my head. Help greatly appreciated.