nisseh32

nisseh32

  • NA
  • 13
  • 0

How do I create a new path in C# ?

Jan 12 2004 3:32 PM
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)