async getFileURL(fileId: string) {
        const file = await this.getCollection().findOne(fileId, { projection: { name: 1 } });
        return file ? this.getURL(`${fileId}/${file.name}`) : undefined;
    }