所以伪代码是:
实际代码是FIle existing =读取文件的全部内容。
String newcontent = "+现有
f.write (newcontent);
void Prepend(char *string, char *file_name)
{
char buf[100];
FILE *fp1, *fp2;
Append(string, "temp_file");
fp1 = fopen(file_name, "a+");
fp2 = fopen("temp_file", "a+");
if (!fp1 && !fp2) {
printf("Unable to open/"
"detect file(s)n");
exit(1);
}
fprintf(fp2, "n");
while (!feof(fp1)) {
fgets(buf, sizeof(buf), fp1);
}
rewind(fp2);
while (!feof(fp2)) {
fgets(buf, sizeof(buf), fp2);
}
fclose(fp1);
fclose(fp2);
remove(temp_file);
}
/*-----------------------------------------------------------------------------*/
void Append(char *string, char *file_name)
{
FILE *file = fopen(file_name, "a");
if(file==NULL)
{
printf("Error opening file.");
}
else
{
fputs(string, file);
}
fclose(file);
}
我知道fseek
可能有一种方法和其他指针相关的东西,但我认为用"简单的方法"对我来说会更好更快。然后创建一个新的临时文件,然后删除它。
好吧,它也不工作。
由于您使用的是临时文件,因此不应该需要辅助缓冲区,只需附加文本,然后将旧文件内容移动到新文件中。
你应该注意的一些事情,
if (!fp1 && !fp2)
仅在两个文件都打开失败时为真,最好单独检查结果,以便我们知道失败的地方。您可以将&&
替换为||
,但除非您重新检查文件指针值,否则失败的原因将是模糊的。- 似乎你从未将
fp1
的数据写入fp2
,我只看到对fgets()
的调用,你将fp1
读取到buf
,然后将fp2
读取到buf
,两次都不做数据。如果文件大于100字节,则最后100字节或更少的数据将存储在buf. 中。这并不一定是最糟糕的事情,但只打开具有所需权限的文件是一个很好的做法。打开一个你只需要以'a+'模式读取的文件有点奇怪 - 在创建新文件之前,最好先检查一个同名文件是否存在。您最好在系统的临时目录中创建该文件,或者为您的程序创建一个专用的tmp目录。使用唯一字符串作为它的名称也是一个好主意。比如"[我的程序]-[原文件名]-[.tmp]">
一个简短的例子,一个应该工作的方法,错误检查(不一定是最好的错误检查,但让你知道错误可能发生的地方):
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <string.h>
int Prepend(char *string, char *file_name)
{
FILE *fp1 = NULL, *fp2 = NULL;
struct stat fs;
if (stat("temp_file", &fs) == 0) {
printf("Error, there is already a file named "temp_file" in the current working directoryn");
return -1;
}
if ((fp1 = fopen(file_name, "r")) == NULL) {
printf("Error : %sn", strerror(errno));
printf("Failed to Open file %sn", file_name);
return -1;
}
if ((fp2 = fopen("temp_file", "w")) == NULL {
printf("Error : %sn", strerror(errno));
printf("Unable to create Temporary filen");
fclose(fp1);
return -1;
}
if (fputs("Prepended Stringn", fp2) == EOF) {
printf("Failed to write string to filen");
fclose(fp1);
fclose(fp2);
if (remove("temp_file") != 0)
printf("Error : %s, while removing temp_filen", strerror(errno));
return -1;
}
int c;
while((c = fgetc(fp1)) != EOF) {
if(fputc(c, fp2) == EOF) {
printf("Error while transfering data from %s to %sn", file_name, "temp_file");
fclose(fp1);
fclose(fp2);
if (remove("temp_file") != 0)
printf("Error : %s, while removing temp_filen", strerror(errno));
return -1;
}
}
fclose(fp1);
if (remove(file_name) != 0) {
printf("Error : %s, while removing %sn", strerror(errno), file_name);
fclose(fp2);
return -1;
}
fclose(fp2);
if (rename("temp_file", file_name) != 0) {
printf("Error : %s, while renaming temp_filen", strerror(errno));
return -1;
}
return 0;
}
fclose()
也可以在错误时返回EOF, errno设置表示错误。但是,对流的任何进一步访问(包括对fclose()的另一次调用)都会导致未定义的行为。所以你可以打印错误,但你不能做太多的事情。
这里有一个小示例,只使用两个而不是三个文件。
void prepend(const char *filename, const char *str)
{
// open the orig file (read only)
FILE *orig = fopen(filename, "r");
// open tmp file (read / write)
FILE *tmp = fopen("temp_file", "w+");
// write string into tmp file (prepend)
fwrite(str, 1, strlen(str), tmp);
// file size of orig
fseek(orig, 0L, SEEK_END);
long orig_size = ftell(orig);
rewind(orig); // set pos to 0
// transfer bytes from orig to tmp (append)
char *buf = malloc(orig_size);
fread(buf, 1, orig_size, orig);
fwrite(buf, 1, orig_size, tmp);
free(buf);
// close orig and delete it
fclose(orig);
remove(filename);
// close and rename tmp file as orig
fclose(tmp);
rename("temp_file", filename);
}
注意:为了简短起见,不涉及错误检查。