-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanage_directory.c
130 lines (106 loc) · 2.63 KB
/
manage_directory.c
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
/* ============== include libraries ============== */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h> // mode of file mode_t
#include <ctype.h>
#include <dirent.h>
//fonction recursiv pour faire un mkdir -p
void recur_mkdir(char *path){
char tmp[256];
char *p = NULL;
size_t len;
snprintf(tmp, sizeof(tmp),"%s",path);
len = strlen(tmp);
if(tmp[len - 1] == '/')
tmp[len - 1] = 0;
for(p = tmp + 1; *p; p++)
if(*p == '/') {
*p = 0;
mkdir(tmp, S_IRWXU);
*p = '/';
}
mkdir(tmp, S_IRWXU);
}
//mkdir -p
void our_mkdir(char *path)
{
struct stat stats;
// fichier non existant
if (stat(path, &stats) == -1) {
recur_mkdir(path);
}
else{
printf (" chemin existe deja\n");
}
}
//ls
void our_ls(char *path) {
struct dirent *Dir;
DIR *dir;
// tester les droits sur le fichier
dir = opendir (path);
if (dir == NULL) {
printf ("impossible d'ouvrir '%s'\n", path);
}
else{
// Paffichage des fichier et dossier
while ((Dir = readdir(dir)) != NULL) {
printf ("%s \n", Dir->d_name);
}
closedir (dir);
}
}
//TO DO : test avec et sans fichier et aussi la profondeur du dir
void our_remove(char *path)
{
size_t path_len;
char *full_path;
DIR *dir;
struct stat stat_path;
struct dirent *entry;
size_t len;
char *buf;
// tester si fichier existe
if(stat(path, &stat_path) == -1)
{
printf(" chemin n'existe pas");
}
// tester les droits d'ouverture sur ce fichier
if ((dir = opendir(path)) == NULL) {
printf("Can`t open directory %s \n", path);
}
path_len = strlen(path);
// parcourir le retour de readdir ( fichier ou dossier dans le path)
while ((entry = readdir(dir)) != NULL) {
// skip entries "." and ".."
if (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, ".."))
continue;
len = path_len + strlen(entry->d_name) + 2;
buf = malloc(len);
if (buf) {
struct stat statbuf;
//tester si un fichier ou dossier
snprintf(buf, len, "%s/%s", path, entry->d_name);
if (!stat(buf, &statbuf)) {
if (S_ISDIR(statbuf.st_mode))
our_remove(buf);
else
unlink(buf);
}
free(buf);
}
}
closedir(dir);
//rmdir marche juste quand le dossier est vide
rmdir(path);
}
/* Fonction nous permettant de changer les droits d'un fichier */
void our_chmod(char *path, char *droit){
int i;
i= strtol(droit,0,8);
chmod(path,i);
}