I have a rootPath that I trust and a relativePath that I don't. I want to combine them in such a way that I can be sure that the result is under rootPath and that the user can't use .. to get back past the starting point. I do want the relative path to allow things like: hello\..\world == world
|
|
|
|||
|
|
|
|
To expand: use Path.Combine, then call GetFullPath on the result and check that that result starts with rootPath. It won't protect you against hardlinks, but it should catch simple things like double-dots. the above as code:
|
||||||||||||
|
|
|
You could just call
For an explaination of the first test see Alex Martelli's comment on technophile's answer. |
|||
|
|
|
|
One thing you can do is to count the number of backslashes ( |
||
