10 parser = argparse.ArgumentParser(description='Process some integers.')
11 parser.add_argument('SOURCE_DIR', type=str, help='source directory')
12 parser.add_argument('DEST_DIR', type=str, help='target directory')
13 parser.add_argument('-c', '--cleanup', action='store_true', dest='cleanup',
14 default=False, help='clean-up source dir')
15 parser.add_argument('-l', '--log-level', type=str, default='INFO', dest='log_lvl',
16 choices=['DEBUG', 'INFO', 'WARNING'], help='select log level')
18 args = parser.parse_args()
20 logging.basicConfig(format='[%(asctime)s] %(levelname)s: %(message)s',
21 level=logging.getLevelName(args.log_lvl),
22 datefmt='%m/%d/%Y %H:%M:%S')
24 for src_file_name, src_file_path in misc.walk_media_files(args.SOURCE_DIR):
25 logging.info('Processing %s...', src_file_name)
27 src_time = misc.extract_timestamp(src_file_path)
29 dst_dir = os.path.join(args.DEST_DIR,
30 datetime.datetime.fromtimestamp(src_time).strftime("%Y/%m"))
31 dst_file_path = os.path.join(dst_dir, src_file_name)
33 if not os.path.exists(dst_file_path):
34 alt_dst_dir = misc.find_file(args.DEST_DIR,
36 os.path.getsize(src_file_path),
37 exclude_dir=args.SOURCE_DIR)
40 dst_file_path = os.path.join(dst_dir, src_file_name)
42 if not os.path.exists(dst_file_path):
43 if not os.path.exists(dst_dir):
45 misc.import_file(src_file_path, dst_file_path, move=args.cleanup)
47 dst_time = misc.extract_timestamp(dst_file_path)
48 if src_time > dst_time:
49 misc.import_file(src_file_path, dst_file_path, move=args.cleanup)
52 misc.delete_dir_contents(args.SOURCE_DIR)