BrawlBuilder/Other/genList.py
mogzol d2fd1c440d Clean up and clarify
This Renames the resources folder so people know what to do with it.
The readme has also been modified to tell people to copy the Resources
folder to the exe directory.
And genList.py has been commented to explain what it is.
2016-02-04 22:30:29 -08:00

19 lines
533 B
Python

#!/usr/bin/python
# This is what I used to generate the BrawlFileList.txt file.
# Give it a folder and it will walk through it and write filenames and sizes to a txt file.
import xml.sax
import sys
import os
f = open("brawlFileList.txt", "w")
for root, dirs, files in os.walk(sys.argv[1]):
for file in files:
info = os.stat(os.path.join(root, file))
relDir = os.path.relpath(root, sys.argv[1])
relFile = os.path.join(relDir, file)
f.write(relFile + " " + str(info.st_size) + "\n")
f.close()