, Pythonic - Python PEP8, . . 1
, . *, , ,
. getSourceDirectory - :
source_directory = "/Users/robert/Music/iTunes/iTunes Media/"
, , , .
if __name__ == '__main__':
source = getSourceDirectory()
destination = getDestinationDirectory()
if not os.path.exists(destination):
os.makedirs(destination)
walkDirectory(source, destination)
try except, , , walkDirectory . :
try:
walkDirectory(source, destination)
except IOError:
os.makedirs(destination)
walkDirectory(source, destination)
1 , . Python, , , . , os.walk .
source
share