Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Part of my application maps resources stored in a number of locations onto web URLs like this:

http://servername/files/path/to/my/resource/

The resources location is modelled after file paths and as a result there can be an unlimited level of nesting. Is it possible to construct an MVC route that matches this so that I get the path in its entirety passed into my controller? Either as a single string or possibly as an params style array of strings.

I guess this requires a match on the files keyword, followed by some sort of wildcard. Though I have no idea if MVC supports this.

share|improve this question

2 Answers

up vote 19 down vote accepted

A route like

"Files/{*path}"

will get the path as a single string. The * designates it as a wildcard mapping and it will consume the whole URL after "Files/".

share|improve this answer
+1 Just what i was looking for, thanks! – used2could Apr 28 '10 at 16:51

For more information on ASP.NET's Routing feature, please see MSDN:

http://msdn.microsoft.com/en-us/library/cc668201.aspx

And for the "catch-all" parameters you want to use, see the section under "Handling a Variable Number of Segments".

share|improve this answer
Great link, thanks! – Gunder Aug 22 '12 at 6:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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