up vote 0 down vote favorite
share [g+] share [fb]

I have an assmebly that will be used in both a desktop app and an asp.net website.

I need to deal with relative paths (local files, not urls) in either situation.

How can i implement this method?

string ResolvePath(string path);

Under a web envronment, id expect the method to behave like this (where d:\wwwroot\mywebsite is the folder iis points at):

/folder/file.ext => d:\wwwroot\mywebsite\folder\file.ext
~/folder/file.ext => d:\wwwroot\mywebsite\folder\file.ext
d:\wwwroot\mywebsite\folder\file.ext => d:\wwwroot\mywebsite\folder\file.ext

for a desktop environment: (where c:\program files\myprogram\bin\ is the path of the .exe)

/folder/file.ext => c:\program files\myprogram\bin\folder\file.ext
c:\program files\myprogram\bin\folder\file.ext => c:\program files\myprogram\bin\folder\file.ext

I'd rather not inject a different IPathResolver depending on what state its running in.

How do I detect which environment I'm in, and then what do i need to do in each case to resolve the possibly-relative path?

Thanks

link|improve this question

68% accept rate
2  
Relative path to what? A file that's used by your assembly? Is it deployed along with your assembly? You may want to say what you're trying to accomplish, as there may be a better way to do it. – John Saunders Jun 22 '09 at 16:33
when in a web environment, relative to the root dir of the iis website (d:\wwwroot\mywebsite in the example above). and when running as a windows desktop app, the dir that the .exe is in (c:\program files\myprogram\bin\ in the example above). – Andrew Bullock Jun 23 '09 at 8:48
feedback

2 Answers

As mentioned in John's comment, relative to what? You can use System.IO.Path.Combine method to combine a base path with a relative path like:

 System.IO.Path.Combine(Environment.CurrentDirectory, relativePath);

You can replace Environment.CurrentDirectory in the above line with whatever base path you want.

You could store the base path in the configuration file.

link|improve this answer
feedback

I don't think the original question was answered.

Let assume you want "..\..\data\something.dat" relative to, lets say the executable in "D:\myApp\source\bin\". Using

System.IO.Path.Combine(Environment.CurrentDirectory, relativePath);

will simply return "D:\myApp\source\bin..\..\data\something.dat" which is also easily obtained by simply concatenating strings. Combine doesn't resolve paths, it handles trailing backslashes and other trivialities. He probably wants to run:

System.IO.Path.GetFullPath("D:\myApp\source\bin..\..\data\something.dat");

To get the a resolved path: "D:\myApp\data\something.dat".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.