-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdir.c
71 lines (56 loc) · 1.9 KB
/
dir.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
/* Klaus Dieter Kupper
* Exibe arquivos e diretórios de um local apontado pelo usuário através de parâmetro de entrada.
* Exemplo de chamada no terminal ./dir /home/klausdk/Documentos/UFSC teste.c
* ./dir <local de busca> <nome do arquivo>
*/
#include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <stdlib.h>
void find(char *name,char *path){
// printf("find(%s , %s) \n",path,name);
DIR *folder;
struct dirent *entry;
int files = 0;
folder = opendir(path);
if(folder == NULL)
{
perror("Não foi possível abrir o diretório;\n");
return;
}
while( (entry=readdir(folder)) )
{
files++;
if(entry->d_type==DT_DIR){
if(strcmp(".",entry->d_name) == 0 || strcmp("..",entry->d_name) == 0){
continue;
}
char *barra ="/";
char buffer[300];
//char *buffer = ( char* )malloc(sizeof( path )+sizeof( path ) );
strcat(strcpy(buffer, path), barra);
strcat(strcpy(buffer, buffer), entry->d_name);
find(name,buffer);
}else{
if(strcmp(".",entry->d_name) == 0 || strcmp("..",entry->d_name) == 0){
continue;
}
if(strcmp(name,entry->d_name) == 0){
printf("Cópia do arquivo %s em:\n",name);
printf("%s\n", path);
printf("\n");
}
}
}
closedir(folder);
return;
}
int main(int argc, char** argv){
if(argc<3){
printf("Chamada incorreta \n Uso da função: ./dir <local de busca> <arquivo para encontrar> \n");
exit(0);
}
printf("Buscando por %s em %s \n\n",argv[2],argv[1]);
find(argv[2],argv[1]);
printf("Busca finalizada \n");
}