gpt4 book ai didi

C# 路径中的非法字符

转载 作者:太空狗 更新时间:2023-10-30 00:01:48 25 4
gpt4 key购买 nike

我使用以下代码在路径中获取非法字符:

string fileNameExisting = Application.StartupPath + "\\CodesLocation\\Template.pdf";
PdfReader templateFile = new PdfReader(fileNameExisting);

我测试了一些变体:

string fileNameExisting = @Application.StartupPath + "\CodesLocation\Template.pdf";
PdfReader templateFile = new PdfReader(fileNameExisting);

但它仍然得到同样的非法错误。

谁能帮我看看我的代码是否有误?

谢谢。

最佳答案

我建议使用适当的方式在 .net 中加入路径: Path.Combine

所以

Path.Combine(Application.StartupPath, "CodesLocation","Template.pdf");

关于C# 路径中的非法字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10550798/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com