webdav

坚果云

目前为 2023-04-02 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.cn-greasyfork.org/scripts/463081/1169716/webdav.js

作者
Mixier
版本
0.0.1.20230402000509
创建于
2023-04-01
更新于
2023-04-02
大小
6.9 KB
许可证
暂无

let dav = new webdav("", "")
dav.ExistsFile('config').then(
async r => {
if (!r) {
await dav.NewFolder('config')
}
console.log(await dav.UploadFiles('config', 'yandex.json', "{data:[1,2,3]}", "json"));
console.log("down", await dav.DownloadFile('config', 'yandex.json'));
}
)