How can I get the folder directory in which the project (C#, WinForms) 's exe file is? My program generates some temporary files but I don't know of any safe place to place them, so I believe the best would be the exe's folder.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If the files are just temp files, you should probably be using the following:
That will give you the current user's temp folder. This is probably a safer bet then trying to write them into the exe's current folder. More Info: http://msdn.microsoft.com/en-us/library/system.io.path.gettemppath.aspx |
|||||
|
|
You can use the directory derived from
If you just want to generate temporary files you can also use |
|||
|
|
|
It's preferred to store temp files in temp directories, (as Dan Rigby said)
But if you still want to save temp files in directory from where application is running then you can simply use
|
|||
|
|