WebDAV.js是一个简单的WebDAV协议的JavaScript实现,目前还没有完成整个协议的支持,只支持基本的操作。
示例代码:
var fs = new WebDAV.Fs('https://localhost:1234/my_files');var hello = fs.file('/my/hello.txt');// This is the same as:var hello = fs.file('https://localhost:1234/my_files/my/hello.txt');
评论