好吧,我在从 VB 执行 7-zip 时遇到了一些麻烦。
这是我当前的代码:
ZipFileName = "\\network\path\PDFs\Test.zip "
PathToPDFs = "\\network\path\PDFs\*.pdf"
Arg1 = "a -tzip"
Process.Start("C:\Program Files\7-Zip\7z.exe" + Arg1 + Zipfilename + PathToPDFs)
我不断得到的错误The system cannot find the file specified
是Win32Exception was unhandled
我知道我的路径是正确的,并且该目录中有 PDF。
有什么建议么?