Skip to content

Instantly share code, notes, and snippets.

View goks's full-sized avatar
💭
Focus until you are there!

Gokul goks

💭
Focus until you are there!
View GitHub Profile
@goks
goks / copy.py
Last active March 19, 2017 18:56
Copy all the files from subdirectories to another directory without the folder hierarchy.
import os, sys
from shutil import copy
import progressbar
read_des = "./"
write_des = "../final/"
count = 0
max_count = 0