Possible Duplicate:
get path for my .exe using c#
Hello I have a question: How can I get my root project path? what I mean is the first folder in the project where the solution is. I found that command :
System.IO.Directory.GetCurrentDirectory();
However it gives me a specific path to the release folder: wanted_Path/bin/Release
So is there other code, should I cut it manually or put my files in the Release folder??
You can use
string wanted_path = Path.GetDirectoryName(Path.GetDirectoryName(System.IO.Directory.GetCurrentDirectory()));
var requiredPath = Path.GetDirectoryName(Path.GetDirectoryName(
System.IO.Path.GetDirectoryName(
System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase )));
This gives you the root folder:
System.AppDomain.CurrentDomain.BaseDirectory
You can navigate from here using .. or ./ etc.. , Appending .. takes you to folder where .sln file can be found
..
or ../..
with System.AppDomain.CurrentDomain.BaseDirectory
? - StigerPath.GetFullPath(Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"..\\..\\"))
- AdionoPath.GetFullPath(Path.Combine(AppContext.BaseDirectory, "..\\..\\..\\"));
- nopara73
Your program has no knowledge of where your VS project is, so see get path for my .exe and go ../..
to get your project's path.