0
If you create a file without giving its full path.it will created with in debug folder.because that is Application's Startup path(folder).
Ex:
File.Create("hii.txt");
this statement will create a text file named as hii in debug folder only.
File.Create("c:\\hii.txt");
this will create a file in c drive.
so give full path where you want to create it.