-
Notifications
You must be signed in to change notification settings - Fork 0
/
RemoveDisk.c
65 lines (58 loc) · 1.6 KB
/
RemoveDisk.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
int RemoveDisk(char * parametros[],size_t n0){
printf("\nIniciando eliminación del disco...\n");
char * path = "";
bool flagPath=0;
// if (n0!=2){
// printf("ERROR 0x02 0x00 0x00.\nError en la eliminación del disco, demasiados parametros (%lu).\n",n0);
// return 0;
// }
int i=1;
char * argumento[50];
size_t n = 0;
for (char * p = strtok(parametros[1], "::"); p; p = strtok(NULL, "::"))
{
if (n >= 50)
{
// maximum number of storable tokens exceeded
break;
}
argumento[n++] = p;
}
if ((strcasecmp (argumento[0],"-path ") == 0) || (strcasecmp (argumento[0],"-path") == 0) ){
char lastChar = argumento[1][strlen (argumento[1])-1];
path = strdup(argumento[1]);
int j = i+1;
while(lastChar!='"'){
printf(">'%s' - '%s'\n",path,parametros[i+1]);
char * tmp = strdup(parametros[j]);
j++;
strcat(path," ");
printf(">'%s'\n",path);
strcat(path,tmp);
printf(">'%s'\n",path);
lastChar = path[strlen(path)-1];
}
lastChar = path[strlen(path)-1];
if (lastChar=='/')
{
path[strlen (path) - 1] = '\0';
}
removeChar(path,'"');
flagPath=1;
}
if ( !(flagPath) ) {
printf("ERROR 0x02 0x00 0x01.\nError en la eliminación del disco, al paracer falta un parametro obligatorio\n\n");
return 0;
}
if(remove(path) == 0) {
printf("Disco eliminado con éxito.\n");
}
else {
printf("ERROR 0x02 0x00 0x02.\nError en la eliminación del disco, porfavor verifique la ubicación del disco. (%s)\n",path);
}
return 1;
}
/*
rmDisk –path=Disco2.dsk
RmDisK –path="Disco3.dsk"
*/