07-21-2015, 06:03 PM
Because there were so many files I decided that there was no way that I was going to copy paste and make 6000 bat files then click on them all to run them. I asked my brother for some coding advice and we were able to make a .bat that would automate the entire process so all 6000 folders would be created from just the one click.
I don't know if this is something you guys already use or not, but this is the code we got to work!
Aha! With this I'll be able to recompile and submit the resources sooner.
cheers.
Code:
cd C:\Disunity
FOR %%f IN (*) DO disunity extract %%f
PAUSE
Aha! With this I'll be able to recompile and submit the resources sooner.
cheers.