-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirfix.py
executable file
·90 lines (73 loc) · 2.75 KB
/
dirfix.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/env python
#
# Copyright 2016 Simón Oroño
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""
Utility to rename files as a secuence of numbers with trailing zeros
"""
import argparse
import os
from random import shuffle
def get_files(path):
"""Non-hidden files without directories"""
file_list = [x for x in os.listdir(path) if
not os.path.isdir(os.path.join(path, x)) and
not x.startswith('.')]
return file_list
def get_dirs(path):
dir_list = [x for x in os.listdir(path) if
os.path.isdir(os.path.join(path, x)) and
not x.startswith('.')]
return dir_list
def run_dir(path, order, recursive):
hidden_dir = os.path.join(path, '.dirfix')
file_list = [os.path.join(path, x) for x in get_files(path)]
if len(file_list) != 0:
os.makedirs(hidden_dir)
if order == 'random':
shuffle(file_list)
elif order == 'date':
file_list.sort(key=os.path.getmtime)
digits = len(str(len(file_list)))
if digits < 3:
digits = 3
new_names = []
index = 1
for file in file_list:
nname = ''.join((str(index).zfill(digits), os.path.splitext(file)[1]))
os.rename(file, os.path.join(hidden_dir, nname))
new_names.append(nname)
index += 1
for file in new_names:
hidden_file_path = os.path.join(hidden_dir, file)
file_path = os.path.join(path, file)
os.rename(hidden_file_path, file_path)
os.removedirs(hidden_dir)
if recursive:
dir_list = get_dirs(path)
for dir in dir_list:
run_dir(os.path.join(path, dir), order, recursive)
def main():
parser = argparse.ArgumentParser(description="Directory structure fixer")
parser.add_argument('-order', type=str, default='date',
help="Specify order (random, date [default])")
parser.add_argument('-r', action='store_true', help="Process subdirectories")
args = parser.parse_args()
if args.order not in ('random', 'date'):
print('`{}` order not found, `date` will be used'.format(args.order))
args.order = 'date'
run_dir('.', args.order, args.r)
if __name__ == '__main__':
main()