-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
217 lines (140 loc) · 4.51 KB
/
main.js
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
let inputArr = process.argv.slice(2);
let fs = require("fs");
let path = require("path");
// console.log(inputArr);
let command = inputArr[0];
// types from organish function -------
let types = {
media: ["mp4", "mkv", "mp3"],
archives: ["zip", "7z", "rar", "tar", "gz", "ar", "iso", "xz"],
documents: [
"docx",
"doc",
"pdf",
"xlsx",
"xls",
"odt",
"ods",
"odp",
"odg",
"odf",
"txt",
"ps",
"tex",
],
app: ["exe", "dmg", "pkg", "deb"],
pic: ["jpeg", "png" , "jpg"]
};
// File -----------------------
switch (command) {
case "tree":
treeFn(inputArr[1]);
break;
case "organize":
organizeFn(inputArr[1]);
break;
case "help":
helpFn()
break;
default:
console.log("PLEASE ENTER A VALID COMMAND");
break;
};
function treeFn(dirPath) {
console.log(" Tree command implementeed for ", dirPath);
}
// Tree Function ----------------------------------------------------------------------------
function treeFn(dirpath) {
if (dirpath == undefined) {
console.log("Please enter a valid Path");
} else {
let doesExist = fs.existsSync(dirpath);
if (doesExist) {
treeHelper(dirpath, " ");
}
}
}
// Tree Helper function
function treeHelper(targetPath, indent) {
let isFile = fs.lstatSync(targetPath).isFile();
if (isFile == true) {
let fileName = path.basename(targetPath);
console.log(indent + "├──" + fileName);
} else {
let dirName = path.basename(targetPath);
console.log(indent + "└──" + dirName);
let children = fs.readdirSync(targetPath);
for (let i = 0; i < children.length; i++) {
let childPath = path.join(targetPath, children[i]);
treeHelper(childPath, indent + "\t");
}
}
}
// Organize FUnction --------------------------------------------------------------------------
function organizeFn(dirPath) {
let destPath;
if(dirPath == undefined) {
console.log("PLease enter a Directory Path");
return;
} else {
let doesExist = fs.existsSync(dirPath);
if (doesExist ) {
destPath = path.join(dirPath, "organized_files");
if (fs.existsSync(destPath) == false) {
fs.mkdirSync(destPath);
}
}else {
console.log("Kindly Enter the correct path ");
return;
}
}
organizeHelper(dirPath, destPath);
}
// organizeHelper-----
function organizeHelper(src, dest) {
let childNames = fs.readdirSync(src);
// console.log(childNames);
for (let i = 0; i < childNames.length; i++) {
let childAddress = path.join(src, childNames[i]);
let isFile = fs.lstatSync(childAddress).isFile();
if (isFile) {
// console.log(childNames[i]);
let fileCategory = getCategory(childNames[i]);
console.log(childNames[i], " belongs to --> ",fileCategory);
sendFiles(childAddress, dest, fileCategory);
}
}
}
// Send Files functions
function sendFiles(srcFilePath, dest, fileCategory) {
let catagoryPath = path.join(dest, fileCategory);
if (fs.existsSync(catagoryPath) == false) {
fs.mkdirSync(catagoryPath);
}
let fileName = path.basename(srcFilePath);
let destFilePath = path.join(catagoryPath, fileName);
fs.copyFileSync(srcFilePath, destFilePath); // copy
// fs.unlinkSync(srcFilePath); // cut
console.log(fileName + " copied to " + fileCategory);
}
// getCategory ------
function getCategory(name) {
let ext = path.extname(name);
ext = ext.slice(1);
for (let type in types) {
let cTypeArr = types[type];
for (let i = 0; i < cTypeArr.length; i++) {
if (ext == cTypeArr[i]) {
return type;
}
}
}
return "others";
}
// Help Function ---------------------------------------------------------------------------------------
function helpFn() {
console.log(`List of all the commands -
1)Tree Command - node FO.js tree <dirName>
2) Organize- node FO.js organize <dirName>
3) Help - node FO.js help `);
}