Working with folders (C#)

How to check if a folder exists:

if (!Directory.Exists("folder name"))
...


How to create a folder:

Directory.CreateDirectory("folder name");

No comments: