How do I convert a path from my drive to an application path? Currently I am creating and accessing files on my hard disk (eg: "D:\MyFolder\MyDoc.doc"). I want this path inside my console application folder. I know I can use Server.MapPath for ASP.NET applications. What about console applications?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
| show 1 more comment |
|
EDITED If you want to read file from your current folder
or you want to get directory path
|
|||||||
|
|
To avoid hardcoding path file, put
Other alternative:
Or:
Or:
To get
|
||||

D:\something\somethingand convert it to a path relative to your applications current working directory like ` ..\..\something\somthing\ ` ? – Alex Gelman Sep 27 '12 at 6:15