vote up 0 vote down star

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?

flag

1  
Any random junk would throw that exception. – Adrian Godong Jul 21 at 10:02

1 Answer

vote up 1 vote down check

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.