hello,
I want to know how can I check if a folder exists.
can anyone pls help?
thanks
:wave:
Printable View
hello,
I want to know how can I check if a folder exists.
can anyone pls help?
thanks
:wave:
Try this.
-FPPCode:
string path = "C:\\Myfolder";
if(Directory.Exists(path))
{
MessageBox.Show("It exists");
}
else
{
Messabebox.Show("doesnt Exist");
}