apps/docs/content/troubleshooting/supabase-storage-inefficient-folder-operations-and-hierarchical-rls-challenges-b05a4d.mdx
Supabase Storage lacks native folder concepts or APIs for batch folder operations, which can lead to inefficient folder operations (move, rename, delete) and difficulties in implementing hierarchical access controls for objects.
Storage buckets treat "folders" purely as key prefixes. This means file system-like folder behavior and inherited permissions are not built-in features of Supabase Storage.
To overcome these limitations and implement robust folder management with hierarchical RLS, consider the following approach:
storage.objects within your custom metadata. Store a reference to storage.objects.id in your custom table to link files to their respective folders.storage.objects. These policies must JOIN with your custom metadata table to enforce hierarchical access permissions based on your defined folder structure.JOINs in RLS policies can lead to performance degradation, especially with large datasets. Ensure proper indexing on your custom metadata table and consider using SECURITY DEFINER functions to optimize policy execution.Supabase Storage also supports an S3-compatible API. This allows you to use tools like the AWS CLI to perform bulk file operations such as downloading, moving, or reorganizing objects more efficiently.
Install the AWS CLI by following the AWS CLI installation guide.
Create S3 credentials in Supabase using the Supabase S3 authentication guide.
Configure an AWS CLI profile using the credentials you generated in Supabase. The profile name can be anything, but it must match the value used in the following commands.
aws configure --profile supabase-s3
Download files from a bucket or prefix:
aws s3 cp s3://bucket-name/folder-name ./download-target
--profile supabase-s3
--endpoint-url https://<project-ref>.supabase.co/storage/v1/s3
--recursive
--region <region>
bucket-name with your bucket name.folder-name with the prefix you want to download, or omit it to download the entire bucket.<project-ref> with your Supabase project reference.<region> with your project's region (for example eu-central-1)../download-target is the local directory where files will be saved.Move or rename files using the mv command. Because folders in Supabase Storage are implemented as prefixes, renaming a folder is effectively moving objects from one prefix to another.
aws s3 mv s3://bucket-name-one/folder-name-one s3://bucket-name-two/folder-name-two
--profile supabase-s3
--endpoint-url https://<project-ref>.supabase.co/storage/v1/s3
--recursive
--region <region>
This method is useful for large-scale downloads, migrations, or reorganizing files within a bucket.