diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/move-drive-files.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tools/move-drive-files.ts b/src/tools/move-drive-files.ts index 1e6fdcf606..23d1b9497e 100644 --- a/src/tools/move-drive-files.ts +++ b/src/tools/move-drive-files.ts @@ -11,8 +11,16 @@ DriveFile.find({ }, { withoutChunks: false }] +}, { + fields: { + _id: true + } }).then(async files => { + console.log(`there is ${files.length} files`); + await sequential(files.map(file => async () => { + file = await DriveFile.findOne({ _id: file._id }); + const minio = new Minio.Client(config.drive.config); const keyDir = `${config.drive.prefix}/${uuid.v4()}`; |