Update resize.py
Browse files
resize.py
CHANGED
@@ -52,40 +52,40 @@ def main():
|
|
52 |
|
53 |
|
54 |
#BATTERY
|
55 |
-
fileWalk(
|
56 |
|
57 |
#BIOLOGICAL
|
58 |
-
fileWalk(
|
59 |
|
60 |
#BROWN-GLASS
|
61 |
-
fileWalk(
|
62 |
|
63 |
#CARDBOARD
|
64 |
-
fileWalk(
|
65 |
|
66 |
#CLOTHES
|
67 |
-
fileWalk(
|
68 |
|
69 |
#GREEN-GLASS
|
70 |
-
fileWalk(
|
71 |
|
72 |
#METAL
|
73 |
-
fileWalk(
|
74 |
|
75 |
#PAPER
|
76 |
fileWalk(paperDir, os.path.join(destPath, 'paper'))
|
77 |
|
78 |
#PLASTIC
|
79 |
-
fileWalk(
|
80 |
|
81 |
#SHOES
|
82 |
-
fileWalk(
|
83 |
|
84 |
#TRASH
|
85 |
-
fileWalk(
|
86 |
|
87 |
#WHITE-GLASS
|
88 |
-
fileWalk(
|
89 |
|
90 |
if __name__ == '__main__':
|
91 |
main()
|
|
|
52 |
|
53 |
|
54 |
#BATTERY
|
55 |
+
fileWalk(batteryDir, os.path.join(destPath, 'battery'))
|
56 |
|
57 |
#BIOLOGICAL
|
58 |
+
fileWalk(biologicalDir , os.path.join(destPath, 'biological'))
|
59 |
|
60 |
#BROWN-GLASS
|
61 |
+
fileWalk(brown-glassDir, os.path.join(destPath, 'brown-glass'))
|
62 |
|
63 |
#CARDBOARD
|
64 |
+
fileWalk(cardboardDir, os.path.join(destPath, 'cardboard'))
|
65 |
|
66 |
#CLOTHES
|
67 |
+
fileWalk(clothesDir, os.path.join(destPath, 'clothes'))
|
68 |
|
69 |
#GREEN-GLASS
|
70 |
+
fileWalk(green-glassDir, os.path.join(destPath, 'green-glass'))
|
71 |
|
72 |
#METAL
|
73 |
+
fileWalk(metalDir, os.path.join(destPath, 'metal'))
|
74 |
|
75 |
#PAPER
|
76 |
fileWalk(paperDir, os.path.join(destPath, 'paper'))
|
77 |
|
78 |
#PLASTIC
|
79 |
+
fileWalk(plasticdDir, os.path.join(destPath, 'plastic'))
|
80 |
|
81 |
#SHOES
|
82 |
+
fileWalk(shoesDir, os.path.join(destPath, 'shoes'))
|
83 |
|
84 |
#TRASH
|
85 |
+
fileWalk(trashDir, os.path.join(destPath, 'trash'))
|
86 |
|
87 |
#WHITE-GLASS
|
88 |
+
fileWalk(white-glassDir, os.path.join(destPath, 'white-glass'))
|
89 |
|
90 |
if __name__ == '__main__':
|
91 |
main()
|