让 Ghostscript 接收名称中带有空格的文件(例如“我的文档”中的某些内容)
我正在尝试运行此命令以使用 Ghostscript (来自 java),但无论是使用单引号 ' 或 " 还是什么都没有,我收到错误
Error: /undefinedfilename in ('c:\\Documents)
gswin32c.exe -q -dNOPAUSE -sDEVICE=tiffgray -sOutputFile=C:\polter.tiff -r300 'c:\Documents and Settings\polter.pdf' -c quit
任何想法吗?
I'm trying to run this command to use ghostscript (from java) but Whether with single quote ' or " or nothing at all I get an error
Error: /undefinedfilename in ('c:\\Documents)
gswin32c.exe -q -dNOPAUSE -sDEVICE=tiffgray -sOutputFile=C:\polter.tiff -r300 'c:\Documents and Settings\polter.pdf' -c quit
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用文件夹的简称。短名称是使用 8.3 格式的别名。您可以在命令提示符下使用 dir /x 命令来查找文件夹的短名称。您的路径将如下所示:
c:\docume~1\polter.pdf
use the short names for folders. short names are aliases which are using the 8.3 format. you can find the short name of a folder by using the
dir /x
command on the command prompt. your path will then look something like this:c:\docume~1\polter.pdf
自己分解争论:
Break up the arguments yourself: