我使用 AutoHotKey,必须通过批处理命令运行应用程序。该命令非常清晰,其形式如下:
" -path of the application- " " -path of a text file-" /igs /bat
我该怎么做呢?命令必须包含“因为路径在某些目录中有空格。
我试过:
Run(" -path of the application- " " -path of a text file-" /igs /bat )
但它给了我一个错误。
提前致谢
答案1
这可能会有效:
Run(""" -path of the application- "" "" -path of a text file-"" /igs /bat" )
还
Run('" -path of the application- " " -path of a text file-" /igs /bat')