此处提供了文档,但令人震惊的是,没有api可以获得与Linux中的du
命令相同的目录大小。
https://www.backblaze.com/b2/docs
此文件具有用于文件的api,但没有目录大小的api-https://www.backblaze.com/b2/docs/files.html
await b2.authorize();
await b2.listFileNames(bucketid);
await b2.getFileInfo(fileId) // gets the file info but directory has null in id field
我们从上面得到了这个结果-
{ accountId: '11111111',
action: 'folder',
bucketId: '44444444444',
contentLength: 0,
contentSha1: null,
contentType: null,
fileId: null,
fileInfo: {},
fileName: 'test/testinside/',
uploadTimestamp: 0 }