forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom_file_move.py
68 lines (56 loc) · 1.77 KB
/
random_file_move.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
# Script Name : random_file_move.py
# Author(s) : Akash Jain
# Created : 1 September 2020
# Last Modified : 1 September 2020
# Version : 1.0
# Description : This will move specified number of files(given in ratio) from the src directory to dest directory.
import os, random
import argparse
def check_ratio(x):
try:
x = float(x)
except ValueError:
raise argparse.ArgumentTypeError("%r not a floating-point literal" % (x,))
if x < 0.0 or x > 1.0:
raise argparse.ArgumentTypeError("%r not in range [0.0, 1.0]" % (x))
return x
desc = "Script to move specified number of files(given in ratio) from the src directory to dest directory."
usage = "python random_file_move.py -src [SRC] -dest [DEST] -ratio [RATIO]"
parser = argparse.ArgumentParser(usage=usage, description=desc)
parser.add_argument(
"-src",
"--src",
type=str,
required=True,
help="(REQUIRED) Path to directory from which we cut files. Space not allowed in path.",
)
parser.add_argument(
"-dest",
"--dest",
type=str,
required=True,
help="(REQUIRED) Path to directory to which we move files. Space not allowed in path.",
)
parser.add_argument(
"-ratio",
"--ratio",
type=check_ratio,
required=True,
help="(REQUIRED) Ratio of files in 'src' and 'dest' directory.",
)
args = parser.parse_args()
src = args.src
dest = args.dest
ratio = args.ratio
files = os.listdir(src)
size = int(ratio * len(files))
print("Move {} files from {} to {} ? [y/n]".format(size, src, dest))
if input().lower() == "y":
for f in random.sample(files, size):
try:
os.rename(os.path.join(src, f), os.path.join(dest, f))
except Exception as e:
print(e)
print("Successful")
else:
print("Cancelled")