vote up 0 vote down star

Is there a nice way in the WinAPI to get a path relative to another path? For example:

Have a list of paths relative to:

a\b\c\d

And I'd like to change them all to paths relative to

a\b\c

Is there a neat way to do this or should I get path parsing?

flag

dupe: stackoverflow.com/questions/275689/… – Shay Erlichmen Nov 4 at 9:20
nope, thats .net – gf Nov 4 at 9:23
Well not a duplicate .. one is for C# and one is for Win32 .. – Goz Nov 4 at 9:23
You didn't read the entire answers there I guess, here is a lazy link stackoverflow.com/questions/275689/… – Shay Erlichmen Nov 4 at 9:26
Relevant answer there, but still that does not make this a redundant question. – MSalters Nov 4 at 10:20

2 Answers

vote up 2 vote down check

As far as i know there is no such functionality in the windows API, but there is e.g. an article on CodeGuru that provides that functionality.

edit:
I stand corrected, there is PathRelativePathTo() in the shell api as mentioned in this answer.

link|flag
That's certainly very close. Thanks very much :-) – Benj Nov 4 at 9:29
You owe me 25 points :) – Shay Erlichmen Nov 4 at 9:31
You were right, i'll write you a check ;) – gf Nov 4 at 11:07
vote up 1 vote down

I don't know of any way of doing this directly, but you might be able to do it in a couple of steps using PathCommonPrefix and PathCombine. Otherwise, boost::filesystem may make it possible, eg with the relative_path() method.

link|flag

Your Answer

Get an OpenID
or

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