For using with android aside from not being able to download all as a zip becuse its over 1gb
The other main issue is they need to be in folders not just zips if what Im reading in this thread is right.
Now instead of redoing to pack, or having to sit around and make folders, just run this bat file
Code: Select all
@echo off
for %%a in (*.*) do (
md "%%~na" 2>nul
move "%%a" "%%~na"
)
Makes a folder for every zip and sticks it in. (IE: If you have 5ED.zip, 10ED.zip, ZEN.zip, It makes folders called 5ED, 10ED AND ZED, and sticks the files in.)
Super easy