Greasy Fork

Greasy Fork is available in English.

webdav

坚果云

当前为 2023-04-01 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.icu/scripts/463081/1169709/webdav.js

作者
Mixier
版本
0.0.1.20230401232632
创建于
2023-04-01
更新于
2023-04-01
大小
5.7 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'));
}
)