Overview
WebDAV for Unity is a full WebDAV client for Unity, with support for many operations, and various WebDAV services.
Features
- Supported operations:
- List
- Get file/folder details
- Download files
- Upload files
- Move file/folder
- Delete file/folder
- Supported services:
- Yandex
- 4share
- DriveHQ
- Jungle Disk
- HiDrive
- many more…
Purchase WebDAV for Unity from the Unity Assets Store here >>
Screenshots
How to use WebDAV for Unity
Create a new WebDAV Client object
Enter your connection details
Select the newly created WebDAV Client object, and in the inspector, enter the connection details:
Add a WebDAV Client property to your scripts
// Create a field of type Client, and assign it in the Editor
public WebDAVClient.Client webDAVClient;
Use the WebDAV Client
// Use the WebDAV client to list the files in the root folder
var res = webDAVClient.List("/");
FAQ
How do I access multiple WebDAV services?
You can create multiple WebDAV Client objects, each dedicated to a single WebDAV service: