I would like to know, if it is possible to only rename a folder in supabase with the supabase js client, without finding and touching every file inside that folder.
For example here:
I want to rename folder parent to super_parent

There exists the move function in supabase js client, but there you only can rename/move files not folders. This doesn't work:
await supabase.storage.from("bucket_id").move(oldFolderName, newFolderName)
If you want to rename just a folder, you have to find all child files, child directories and there files recursive and rename every single file. Thats quite a lot of effort.
So I would like to know, if there is a shorthand version for this?