vote up 0 vote down star

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

flag

45% 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 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 at 8:48

1 Answer

vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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