If I select one file and upload it to .NET as List<HttpPostedFileBase>, the file HttpPostedFIleBase.FileName property, which includes the file's complete path, has what I would expect for escaped strings - double backslashes, for example C:\\FirstDir\\Foo.txt
But if I select multiple files and upload them, the files have double double (quadruple) backslashes: C:\\\\FirstDir\\\\Foo.txt.
Is this known? Can anyone confirm? From what I can tell the full paths are coming from .NET, not JavaScript or Kendo, but I want to be sure.
Thanks.