Is there a way to move images from your pc in bulk to a folder in glitch? If so, how?

I’d say Zip the files on your PC, Upload them, WGET the zip file, and Unzip it unzip [FILENAME].zip.

Then, you can move the files from the extracted folder using this command:

mv  -v ~/[FILENAME]/* ~/upload/images/
2 Likes