X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/38825f06cdb5f35c624047e3dc84ee190775a142..19dd8c73f1c094909dfe57cb607cc39d13779bf2:/emufs/tipo1_main.c diff --git a/emufs/tipo1_main.c b/emufs/tipo1_main.c index 664e3db..f50456e 100644 --- a/emufs/tipo1_main.c +++ b/emufs/tipo1_main.c @@ -132,6 +132,33 @@ int main(int argc, char* argv[]) { printf("Archivos auxiliares:\n\n"); ver_archivo_FS(efs); + /* compacta archivo */ + printf("\n--------------------------------------------------\n"); + printf("Compactando archivo.......\n\n"); + efs->compactar(efs); + + /* Ve archivos auxiliares */ + printf("Archivos auxiliares:\n\n"); + ver_archivo_FS(efs); + printf("\n--------------------------------------------------\n"); + + /* Lee registros */ + reg = efs->leer_registro(efs, id1, &size, &err); + if (err) { + printf("No se pudo leer el registro 1 (%d).\n", err); + goto out; + } + printf("El contenido del registro 1 es: '%s'.\n", reg); + free(reg); + + reg = efs->leer_registro(efs, id3, &size, &err); + if (err) { + printf("No se pudo leer el registro 3 (%d).\n", err); + goto out; + } + printf("El contenido del registro 3 es: '%s'.\n", reg); + free(reg); + out: emufs_destruir(efs); return err;