讓我們有一個路徑如何用引號括起存儲在變量中的路徑?
C:\Program Files\TestFolder
這條道路我得到了編程並存儲在varible dirpath(例如)
我現在已經串連字符串
dirpath=getInstallationpath()+"\\ test.dll /codebase /tlb";
然後dirpath是成爲
C:\Program Files\TestFolder\test.dll /codebase /tlb
但我的問題是我已經把路徑用雙引號括起來
"C:\Program Files\TestFolder\test.dll"
因爲當我直接傳遞dirpath作爲命令行用於regasm在的CreateProcess(),那麼它應該能夠接受C:\程序只是因爲白spaces.so我嘗試很多特技等
dirpath="\ "+getInstallationPath()+" \test.dll /codebase /tlb "
這樣的,但沒有工作......
所以請HEP我在這方面...提前
謝謝...
這與從http://stackoverflow.com/questions/1177323/how-to-pass-the-directory-path-as-command-line-for-the-process中的問題有何不同? – sharptooth 2009-07-30 04:52:36