Hi Guys
NP117 application folder
http://www.aspfree.com/c/a/C-Sharp/C-Sharp-FileStream-Explained/2/
In the above website author is saying “Navigate to the application folder and open the text file.”
I tried by using search engine. It is not producing aFile.
Please tell me how to do this.
Thank you
AlanPosted Aug 9, 2008, 5:24 PM
In the absence of a full path being specified, the file "aFile.txt" will be created in the same folder as the application .exe file itself.
So to navigate to the application folder, you just navigate to where the .exe is stored and then open the text file (with notepad,say) from there.
If you're creating the application from Visual Studio, the exe will be in the \bin\debug folder.
Posted Aug 9, 2008, 5:50 PM
Thank you for your help.