4
Answers

How do I create a new path in C# ?

nisseh32

nisseh32

20y
2.7k
1
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)