Part of my application maps resources stored in a number of locations onto web URLs like this:
http://servername/files/path/to/my/resource/
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/".
*
"Files/"