Methods
Create Folder

CreateFolder

CreateFolder allows you to create a folder in your cloud storage if it does not already exist.

libs/cllouda.ts
const { CreateFolder } from '@cllouda/sdk'
 
const { data, success, message } = await CreateFolder({
    token: 'YOUR_API_KEY',
    data: {
        path: 'path/to/folder'
    }
})