4
Answers

How do I create a new path in C# ?

FileInfo f=new FileInfo("test.txt"); FileStream fs= f.Create(); fs.Close(); the code above works fine but not the one below FileInfo f=new FileInfo("NyMapp/test.txt"); FileStream fs= f.Create(); fs.Close();

Answers (4)