I need some details related to WebDav server implementation. Currently I have integrated webdav server for filesystem with basic authentication schema with my web application. Is web dav server working with max file path? As I am having file at path length 420 but i am facing issue with it.
Asked
Active
Viewed 252 times
1
-
Please [edit] your question to show [what you have tried so far](http://whathaveyoutried.com). You should include a [mcve] of the code that you are having problems with, then we can try to help with the specific problem. You should also read [ask]. – Toby Speight Nov 09 '16 at 13:33
1 Answers
0
The IT Hit WebDAV Server Engine for .NET itself does not have any limitations on file path. The limitation is in the WebDAV server implementation and in case of the file system sample in .NET Framework.
The most simple way to achieve long file path support is to build a server that runs on .NET Core. To generate the WebDAV server that runs on .NET Core you can either use the ASP.NET Core WebDAV Server Application wizard:
or use WebDAVServer.FileSystemStorage.AspNetCore sample provided with SDK.
You can also achieve long file path support with a regular .NET Framework, but this will require more affords: How to deal with files with a name longer than 259 characters?

IT Hit WebDAV
- 5,652
- 12
- 61
- 98