Peter Hoffmann
About
Archive
Talks
RSS Feed
Peter Hoffmann
Follow
Python Developer, Conference Speaker, Mountaineer
How to find out if a file exists in C# / .NET?
September 2, 2008
stackoverflow
python
This my Answer to the stackoverflow question:
How to find out if a file exists in C# / .NET?
:
System.IO
using System.IO; if (File.Exists(path)) { Console.WriteLine("file exists"); }