为什么我们会得到“该路径不是合法形式”? 对于 FileInfo 构造函数?

发布于 2024-07-28 05:59:32 字数 333 浏览 4 评论 0原文

我们使用以下代码在 C# 中创建一个 FileInfo 对象:

if (planConfig->OrganisationsFilePath != nullptr)
{
   FileInfo^ file = gcnew FileInfo(planConfig->OrganisationsFilePath);
   //Do some stuff here
}

我们的客户报告说,他们看到一个 ArgumentException,其中抛出的消息是“路径不是合法形式”。 我们无法重现此错误,我们想知道您需要将什么字符串传递给 FileInfo 构造函数才能看到此错误?

We're creating a FileInfo object in C# using the following code:

if (planConfig->OrganisationsFilePath != nullptr)
{
   FileInfo^ file = gcnew FileInfo(planConfig->OrganisationsFilePath);
   //Do some stuff here
}

and our customers are reporting that they see an ArgumentException with “The path is not of a legal form” as the message being thrown. We cannot reproduce this and we're wondering what string you'd need to pass to the FileInfo constructor to see this error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随风而去 2024-08-04 06:00:07

该路径可能包含无效字符。 请参阅有关 FileInfo 构造函数的 MSDN 文档

ArgumentException:文件名为空、仅包含空格或包含无效字符。

The path probably contains invalid characters. See the MSDN documentation on FileInfo constructor.

ArgumentException:The file name is empty, contains only white spaces, or contains invalid characters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文