从archive()
调用时,readcont(char *filename)
执行正常!但是,从runoptions()
调用,它无法列出“已存档”的文件!这是为什么?
该程序必须在终端中运行。使用-h
作为参数查看用法。
该程序被写入“归档”文本文件为“.rldzip”文件。
readcont(char *x)
应显示归档在文件(*x)
a)成功通话
使用该程序存档3个文本文件:
rldzip.exe a.txt b.txt c.txt FILEXY -a
archive()
将调用readcont,它将显示在创建二进制FILEXY之后存档的文件。
b)不成功的电话
创建文件后,使用: rldzip.exe FILEXY.rldzip -v 你可以看到该功能崩溃了!
我想知道为什么会这样!
/*
Sa se scrie un program care:
a) arhiveaza fisiere
b) dezarhiveaza fisierele athivate
*/
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
struct content{
char *text;
char *flname;
}*arc;
FILE *f;
void readcont(char *x){
FILE *p;
if((p = fopen(x, "rb")) == NULL){
perror("Critical error: ");
exit(EXIT_FAILURE);
}
content aux;
int i;
fread(&i, sizeof(int), 1, p);
printf("\nFiles in %s \n\n", x);
while(i-- >1 && fread(&aux, sizeof(struct content), 1, p) != 0)
printf("%s \n", aux.flname);
fclose(p);
printf("\n\n");
}
void archive(int argc, char **argv){
int i;
char inttext[5000], textline[1000];
//Allocate dynamic memory for the content to be archived!
arc = (content*)malloc(argc * sizeof(content));
for(i=1; i< argc; i++)
{
if((f = fopen(argv[i], "r")) == NULL){
printf("%s: ", argv[i]);
perror("");
exit(EXIT_FAILURE);
}
while(!feof(f)){
fgets(textline, 5000, f);
strcat(inttext, textline);
}
arc[i-1].text = (char*)malloc(strlen(inttext) + 1);
strcpy(arc[i-1].text, inttext);
arc[i-1].flname = (char*)malloc(strlen(argv[i]) + 1);
strcpy(arc[i-1].flname, argv[i]);
fclose(f);
}
char *filen;
filen=(char*)malloc(strlen(argv[argc])+1+7);
strcpy(filen, argv[argc]);
strcat(filen, ".rldzip");
f = fopen(filen, "wb");
fwrite(&argc, sizeof(int), 1, f);
fwrite(arc, sizeof(content), argc, f);
fclose(f);
printf("Success! ");
for(i=1; i< argc; i++)
{
(i==argc-1)? printf("and %s ", argv[i]) : printf("%s ", argv[i]);
}
printf("compressed into %s", filen);
readcont(filen);
free(filen);
}
void help(char *v){
printf("\n\n----------------------RLDZIP----------------------\n\nUsage: \n\n Archive n files: \n\n%s $file[1] $file[2] ... $file[n] $output -a\n\nExample:\n%s a.txt b.txt c.txt output -a\n\n\n\nView files:\n\n %s $file.rldzip -v\n\nExample:\n %s fileE.rldzip -v\n\n", v, v, v, v);
}
void runoptions(int c, char **v){
int i;
if(c < 2){
printf("Arguments missing! Use -h for help");
}
else{
for(i=0; i<c; i++)
if(strcmp(v[i], "-h") == 0){
help(v[0]);
exit(2);
}
for(i=0; i<c; i++)
if(strcmp(v[i], "-v") == 0){
if(c != 3){
printf("Arguments misused! Use -h for help");
exit(2);
}
else
{
printf("-%s-", v[1]);
readcont(v[1]);
}
}
}
if(strcmp(v[c-1], "-a") == 0)
archive(c-2, v);
}
main(int argc, char **argv)
{
runoptions(argc, argv);
}
答案 0 :(得分:0)
在冒昧地重新启动代码之后,一个问题就会立即出现:runoptions
仅在参数列表中找到readcont
的情况下调用-v
。并且呼叫被硬编码到v[1]
。也许你想要v[i]
?
答案 1 :(得分:0)
简要地看了一下。我相信您在readcont
中runoptions()
调用readcont( v[i + 1] )
,readcont(v[1])
而不是{{1}}