Files Saved to Moralis

Is it possible to see / list files in Moralis that my app has saved there?

Thank you,

David

You can check into the server dashboard, there you will find all the databases including your items.

Carlos Z

@thecil,

But there is no table for β€œfiles”

You should be able to see your databases, your files are saved on ipfs through moralis, and you check them on the table that you specify.

Carlos Z

Carlos,

I did not use IPFS. Here is the code used:

        var moralisFile = new Moralis.File(fileName, {base64: base64Data});
        
        return moralisFile.save().then(function(result) {
            console.log("file save result: " + JSON.stringify(result));
            return result;
        }, function(error) {
            // The file either could not be read, or could not be saved to Moralis.
            console.log("file save error: " + JSON.stringify(error));
        });

I do not have a table (class or object) that has file names in it.

What I want to know is can I view the file list on moralis the same way I would on S3 in AWS.

Thank you.

You might want to check the tutorial video on how to save and check files on moralis:

https://www.youtube.com/watch?v=I_wxIshq4WA

Carlos Z

But I don’t have a laptop sir