How to create a folder in the File Store in the production environment?

How to create a folder in the File Store in the production environment?

You can create folders using Catalyst SDK’s only in the development environment. The folders cannot be created through Catalyst SDK methods in the production environment. Hence, we would suggest you to create the folders in the Filestore only from the Catalyst console and you can also set the permissions from the Catalyst Console UI. Then, you can migrate the same to your production environment. You can find the help documentation for the same here.
    • Related Articles

    • Environment variables for testing

      In order to test your function in local debugging, either you can add the environmental variables in your local machine or you can add it in your .env file inside your functions folder and access the same.    In order to access the environment ...
    • Multiline text fields in the Catalyst Data Store

      You can create your application with multiline text and rich text fields and use the text datatype available in the Catalyst Datastore in order to save the contents of those fields. You can find the help documentation regarding the same here. 
    • File in Catalyst File Store; Get file name

      You can use the getFileDetails method available in the Node SDK in order to get the name of a file before downloading it. A sample code snippet for getting file name and other file details is as follows :      let filestore = app.filestore();     let ...
    • Catalyst Data Store tables are empty in production

      We would suggest you to use the Catalyst CLI/Bulk Write API to perform the bulk write operation in your table in the production environment. You can export the same from development and import it into production. Please check this link for more ...
    • Attaching a file from File Store in an email

      As of now, we do not have the support for attaching files while sending email.  For now, we would suggest you to upload the file to the Catalyst Filestore, and create an URL for the same using the Catalyst functions and share the URL via mail to ...