vote up 7 vote down star
1

I would like to test a string containing a path to a file for existence of that file (something like the -e test in Perl or the os.path.exists() in Python) in C#.

flag

3 Answers

vote up 17 vote down check

Use:

File.Exists(path)

MSDN: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx

Edit: In System.IO

link|flag
vote up 5 vote down

System.IO.File.Exists(path)

msdn

link|flag
vote up 4 vote down

System.IO

using System.IO;
if (File.Exists(path)) 
                {
                    Console.WriteLine("file exists");
                }
link|flag

Your Answer

Get an OpenID
or

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