我使用以下代码在路径中获取非法字符:
string fileNameExisting = Application.StartupPath + "\\CodesLocation\\Template.pdf";
PdfReader templateFile = new PdfReader(fileNameExisting);
我测试了一些变化:
string fileNameExisting = @Application.StartupPath + "\CodesLocation\Template.pdf";
PdfReader templateFile = new PdfReader(fileNameExisting);
但它仍然得到同样的非法错误。
谁能帮我看看我的代码是否错误?
谢谢。