Why are we getting “The path is not of a legal for

2019-04-27 13:43发布

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?

标签: c# fileinfo
1条回答
Summer. ? 凉城
2楼-- · 2019-04-27 14:13

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.

查看更多
登录 后发表回答