14 lines
354 B
Python
14 lines
354 B
Python
|
import os
|
||
|
import simplejson
|
||
|
|
||
|
images = []
|
||
|
path = '../../build/'
|
||
|
|
||
|
for dirname, dirnames, filenames in os.walk(path + 'png'):
|
||
|
for filename in filenames:
|
||
|
if filename[:1] != '.':
|
||
|
images.append(os.path.join(dirname.replace(path, ''), filename))
|
||
|
|
||
|
f = open(path + 'json/ox.ui.images.json', 'w')
|
||
|
f.write(simplejson.dumps(images))
|
||
|
f.close()
|