-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfolder_creator.sh
executable file
·289 lines (238 loc) · 7.48 KB
/
folder_creator.sh
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/bin/bash
DESCRIPTION="Easily create multiple folders inside a directory."
# TODO:
# - Add a help message
# - Optimize the structure of the script
# ==============================================================================
# Functions
# ==============================================================================
# Check if a folder name is valid
# @param $1: folder name
# @return: 0 if the folder name is valid, 1 otherwise
is_valid_folder_name() {
local folder_name=$1
# Remove all spaces from the folder name
folder_name=$(echo "$folder_name" | tr -d ' ')
# Check for empty input
if [[ -z "$folder_name" ]]; then
printf "!!! The folder name cannot be empty. " >&2
return 1
fi
# Check for length
if [[ ${#folder_name} -gt 100 ]]; then
printf "!!! The folder name is too long (max 255 characters). " >&2
return 1
fi
# Check for invalid characters
if [[ "$folder_name" =~ [/\\\:\*\?\"\<\>\|] ]]; then
printf "!!! The folder name contains invalid characters (\\ / : * ? \" < > |). " >&2
return 1
fi
# Check if the folder already exists
if [[ -d "$directory/${folder_name}" ]]; then
printf "!!! The folder already exists. " >&2
return 1
fi
return 0
}
# Get the folder path from the user and store it in the folder_path variable
get_folder_path() {
local count=0
printf "Use the current directory ($(pwd))? (y/n): "
read -r user_input
if [[ "$user_input" == "y" ]]; then
folder_path=$(pwd)
return
fi
while [[ count -lt 5 ]]; do
printf "Enter path: "
read -r user_input
# input validation
if [[ ! -d "$user_input" ]]; then
if [[ -z "$user_input" ]]; then
# >&2 redirects the output to stderr
printf "!!! the directory cannot be empty, try again.\n" >&2
elif [[ -f "$user_input" ]]; then
printf "!!! the directory cannot be a file, try again.\n" >&2
else
printf "!!! the directory does not exist, try again.\n" >&2
fi
count=$((count + 1))
continue
elif [[ ! -w "$user_input" ]]; then
printf "!!! you don't have write permissions for the directory, try again.\n" >&2
count=$((count + 1))
continue
fi
# Set the folder path
folder_path="$user_input"
break
done
# user failed to provide a valid directory 5 times
if [[ -z "$folder_path" ]]; then
printf "!!! no directory selected, exiting.\n" >&2
exit 1
fi
}
# Get the mode
get_mode() {
local count=0
while [[ count -lt 5 ]]; do
printf "Choose a mode (1: Regular (r), 2: Single (s)): "
read -r user_input
# input validation
if [[ "$user_input" != "r" && "$user_input" != "s" ]]; then
printf "!!! invalid mode, try again.\n" >&2
count=$((count + 1))
else
mode="$user_input"
break
fi
done
}
ask_folder_confirmation() {
printf "The following folders will be created:\n"
for name in "${names_list[@]}"; do
printf "%s\n" "$name"
done
printf "Do you want to continue and create the folders? (y/n): "
read -r user_input
if [[ "$user_input" != "y" && "$user_input" != "Y" ]]; then
printf "Creating folders aborted. Exiting program.\n"
exit 0
fi
return 0 # 0 in shell scripts means success, which translates to 'true' for other languages
}
# Create folders from a list of names
create_folders() {
printf "Creating folders...\n"
for name in "${names_list[@]}"; do
mkdir "$folder_path/$name"
done
}
# List the folders created
list_folders() {
cd "$folder_path" || exit 1
ls
}
# Create multiple folders in regular mode
regular_mode() {
name_stem=""
number_of_digits=0
# Get the stem of the names
local count=0
while [[ count -lt 5 ]]; do
printf "Name stem: "
read -r name_stem
if is_valid_folder_name "$name_stem"; then
break
else
count=$((count + 1))
fi
done
if [[ count -eq 5 && "$name_stem" == "" ]]; then
printf "!!! You failed to enter a valid name stem. Exiting program.\n" >&2
exit 1
fi
# Get the number of digits in the number of folders
count=0
while [[ count -lt 5 ]]; do
printf "Number of digits: "
read -r number_of_digits
if [[ 0 -lt "$number_of_digits" && "$number_of_digits" -lt 10 ]]; then
break
else
printf "!!! The number of digits must be a positive integer lower than 10." >&2
count=$((count + 1))
fi
done
if [[ count -eq 5 ]]; then
printf "!!! You failed to enter a valid number of digits. Exiting program.\n" >&2
exit 1
fi
# Get the range of the numbers
count=0
start=0
end=0
while [[ count -lt 5 ]]; do
printf "Range (start end): "
read -r start end
if [[ "$start" == "" || "$end" == "" ]]; then
printf "!!! The range cannot be empty. " >&2
count=$((count + 1))
continue
fi
if [[ ! "$start" =~ ^[0-9]+$ || ! "$end" =~ ^[0-9]+$ ]]; then
printf "!!! The range must be composed of integers. " >&2
count=$((count + 1))
continue
fi
if [[ "$start" -lt 0 || "$end" -lt 0 ]]; then
printf "!!! The range (start and end) must be positive. " >&2
count=$((count + 1))
continue
fi
if [[ "$start" -lt "$end" ]]; then
break
else
printf "!!! The start number must be smaller than the end number. " >&2
count=$((count + 1))
fi
done
if [[ count -eq 5 ]]; then
printf "!!! You failed at providing a valid range. Exiting program.\n" >&2
exit 1
fi
# Create the folder list
for ((i = start; i <= end; i++)); do
# Create the folder name with the correct number of digits (padded with zeros)
folder_name="${name_stem}$(printf "%0${number_of_digits}d" "$i")"
names_list+=("$folder_name")
done
if ask_folder_confirmation; then
create_folders
else
printf "Creating folders aborted. Exiting program.\n"
exit 0
fi
}
# Create multiple folders in single mode
single_mode() {
printf "Enter the folder names. Enter '-q' when done.\n"
while true; do
printf "Next folder name: "
read -r folder_name
if [[ "$folder_name" == "-q" ]]; then
break
fi
if is_valid_folder_name "$folder_name"; then
names_list+=("$folder_name")
fi
done
if ask_folder_confirmation; then
create_folders
else
printf "Creating folders aborted. Exiting program.\n"
exit 0
fi
}
# ==============================================================================
# Main
# ==============================================================================
# Variables
folder_path="" # Path to the folder where the folders will be created
mode="" # Mode (r: Regular, s: Single)
names_list=() # List of names for the folders
get_folder_path
get_mode
if [[ $mode == "r" ]]; then
regular_mode
elif [[ $mode == "s" ]]; then
single_mode
else
printf "!!! Invalid mode. Exiting program.\n" >&2
exit 1
fi
printf "--> Done!\n"
printf "Folders created:\n"
list_folders