finittz1
06-22-2009, 04:57 PM
I'm running a command line utility on my ASP web site which takes an input of a list of file names along with other parameters. The following command works fine:
pdftk D:\testfolder\*.pdf other_parameter other_parameter
But then my folder path actually has a space in it so I need to do this:
pdftk "D:\test folder\*.pdf" other_parameter other_parameter
but this doesn't work because the quotes makes the asterisk a string character and does not use it as a special character anymore.
How do I work around this without renaming folders or anything along those lines where it requires me to change the input? Thanks
pdftk D:\testfolder\*.pdf other_parameter other_parameter
But then my folder path actually has a space in it so I need to do this:
pdftk "D:\test folder\*.pdf" other_parameter other_parameter
but this doesn't work because the quotes makes the asterisk a string character and does not use it as a special character anymore.
How do I work around this without renaming folders or anything along those lines where it requires me to change the input? Thanks