-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharquivos.c
155 lines (126 loc) · 3.16 KB
/
arquivos.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
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
#include <stdio.h>
#include <stdlib.h>
#include "contato.h"
int criarContato(struct contato c1) {
FILE *arquivo = fopen("contatos.txt","a");
int resultado;
if (arquivo != NULL) {
c1.id = getID() + 1;
int retorno = fprintf(arquivo, "%i %s %i %s\n", c1.id, c1.nome, c1.telefone, c1.email);
if (retorno == EOF) {
// Fracasso na grava??o
resultado = 0;
}
else {
// Sucesso na grava??o
resultado = 1;
}
fclose(arquivo);
} else {
// Fracasso no acesso ao arquivo
resultado = 0;
}
return resultado;
}
void listarContatos() {
FILE *arquivo = fopen("contatos.txt","r");
if (arquivo != NULL) {
struct contato c1;
while(!feof(arquivo)){
fscanf(arquivo,"%i %s %d %s ", &c1.id, &c1.nome, &c1.telefone, &c1.email);
printf("ID: %i \nNome: %s \nTelefone: %d \nEmail: %s\n\n", c1.id, c1.nome, c1.telefone, c1.email);
}
}
else {
printf("N?o existem contatos para listar!\n\n");
}
fclose(arquivo);
}
int deletarContato(int id){
FILE *arquivo = fopen("contatos.txt","r");
struct contato c1;
int resultado;
if (arquivo != NULL) {
FILE *arquivo_aux = fopen("contatos_aux.txt","a");
rewind(arquivo);
while(!feof(arquivo)){
fscanf(arquivo,"%i %s %d %s ",&c1.id, &c1.nome, &c1.telefone, &c1.email);
if(c1.id == id){
resultado = 1;
continue;
}
fprintf(arquivo_aux, "%i %s %i %s \n",c1.id, c1.nome, c1.telefone, c1.email);
}
fclose(arquivo_aux);
fclose(arquivo);
remove("contatos.txt");
rename("contatos_aux.txt", "contatos.txt");
}
else {
fclose(arquivo);
resultado = 0;
}
return resultado;
}
int editarContato(int id){
FILE *arquivo = fopen("contatos.txt","r");
struct contato c1;
int resultado;
if (arquivo != NULL) {
FILE *arquivo_aux = fopen("contatos_aux.txt","a");
rewind(arquivo);
while(!feof(arquivo)){
fscanf(arquivo,"%i %s %d %s ",&c1.id, &c1.nome, &c1.telefone, &c1.email);
if(c1.id == id){
resultado = 1;
printf("Qual informação gostaria de editar?\n1. Nome\n2. Telefone\n3. E-mail\n");
char info;
scanf("%c", &info);
fflush(stdin);
switch (info)
{
case '1':
printf("Insira o nome atualizada!");
scanf("%s", &c1.nome);
break;
case '2':
printf("Insira o telefone atualizado!");
scanf("%i", &c1.telefone);
break;
case '3':
printf("Insira o e-mail!");
scanf("%s", &c1.email);
break;
}
}
fprintf(arquivo_aux, "%i %s %i %s \n",c1.id, c1.nome, c1.telefone, c1.email);
}
fclose(arquivo_aux);
fclose(arquivo);
remove("contatos.txt");
rename("contatos_aux.txt", "contatos.txt");
}
else {
fclose(arquivo);
resultado = 0;
}
return resultado;
}
int getID() {
FILE *arquivo = fopen("contatos.txt","r");
struct contato c1;
if (arquivo != NULL) {
while(!feof(arquivo)){
fscanf(arquivo,"%i %s %d %s ",&c1.id, &c1.nome, &c1.telefone, &c1.email);
}
if(feof(arquivo)){
int greatestId = c1.id;
fclose(arquivo);
return greatestId;
}
}
else {
fclose(arquivo);
return 0;
}
}