How to upload a folder to parse

I config parse with minio backend storage .now I can upload 1 file to 1 column ,but I want upload the whole folder to 1 column with array of file . how can i do it ?

How about zipping the folder into one file?

I can do it but it is not perfect solution,I want upload the folder to S3 storage and then store the URLs into a array ,how to process it

You could look into the capabilities of the current Parse Server S3 storage adapter by code and AWS S3 API and see which commands it supports to create folders. If it does not support creating folders, then you could:

a) use the AWS NodeJS driver directly to create folders
b) open an issue and submit a PR to extend the current Parse Server S3 storage adapter to support folder management