-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplify_file_tree.py
63 lines (54 loc) · 1.77 KB
/
simplify_file_tree.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
"""Simplify The File Tree
Quickly flat the file structure by removing the first level directories
"""
import argparse
import pathlib
import subprocess
def simplify(tgt: str, rm_empty_folder: bool):
"""Simplify the file tree
Args:
tgt (str): the directory to be simplified
rm_empty_folder (bool): whether the empty folder to be removed or not
"""
target = pathlib.Path(tgt)
for entry in target.iterdir():
if entry.is_dir():
for f in entry.iterdir():
if f.name == ".DS_Store":
f.unlink()
continue
fname = f.name
while (dest := target / fname).exists():
fname = "0_" + fname
f.rename(dest)
if rm_empty_folder:
entry.rmdir()
def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument(
"-k",
"--keepsubfolder",
action="store_true",
default=False,
help="Keep the empty subfolder",
)
parser.add_argument(
"-o",
"--open",
action="store_true",
default=False,
help="Open the folder when finished",
)
parser.add_argument("target", help="The folder to be simplified")
options = parser.parse_args()
target = options.target
if len(target) == 0 or pathlib.Path(target).is_dir() is False:
msg = f"You must provide a valid folder (current input is '{target}')"
raise FileExistsError(msg)
simplify(target, not options.keepsubfolder)
print(f"{target=} cleaned.")
if options.open:
# by adding the check=True, we can be sure that an error raised if it fails
subprocess.run(["open", target], check=True)
if __name__ == "__main__":
main()