我通過使用下面的代碼獲取路徑非法字符:C#中的路徑非法字符
string fileNameExisting = Application.StartupPath + "\\CodesLocation\\Template.pdf";
PdfReader templateFile = new PdfReader(fileNameExisting);
我測試了一些變化:
string fileNameExisting = @Application.StartupPath + "\CodesLocation\Template.pdf";
PdfReader templateFile = new PdfReader(fileNameExisting);
但它仍然得到同樣的非法錯誤。
任何人都可以幫我看看我的代碼是否錯誤?
謝謝。
爲什麼不輸出'fileNameExisting',以便我們可以看到非法字符是什麼。 – Nick
檢查Application.StartupPath值和共享。 –
它是c:\ Projects ...讓我試試答案n恢復如果有任何問題 – kyusan93