-
Notifications
You must be signed in to change notification settings - Fork 0
/
fichier.js
45 lines (41 loc) · 1.04 KB
/
fichier.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
const fs = require('node:fs');
const path = require('node:path');
class Fichier {
/*
@Goal : Check the extension of a file
@Param : The path to the file
@Return the extension
*/
verifType(chemin) {
return path.extname(chemin);
}
/*
@Goal : Copy the file into the folder
@Params :
-cheminFichier : Path to the file
-dest : Path of the directory
*/
async copieFichier(cheminFichier, dest) {
const fileName = path.basename(cheminFichier);
fs.copyFile(cheminFichier, dest + '/' + fileName, (err) => {
if(err) {
// console.log(err);
}
// console.log(fileName, 'copié');
});
}
/*
@Goal : Delete a file
@Param : Path to the file
*/
supprimeFichier(chemin) {
fs.unlink(chemin, (err) => {
if(err) {
// console.log(err);
return;
}
// console.log(`${chemin} supprimé` );
});
}
}
module.exports = Fichier;