我試圖創建一個函數,在從文本文件(包含)到(排除)的每一行的最後附加!!
。我經歷了幾次併發症後,確實成功了。但不完全。輸出文件中的不需要的空格
int incldue_auto (char *script, unsigned int offsetLine, unsigned int endLine)
{
size_t fileSize;
size_t content = (endLine - offsetLine) * 3; // New characters
char *buffer;
FILE* fp;
if((fp = fopen(script, "r")) == NULL) //return(1);
if(fseek(fp, 0l, SEEK_END) != 0) //return(2);
if((fileSize = ftell(fp)) == (-1l)) //return(3);
if(fseek(fp, 0l, SEEK_SET) != 0) //return(2);
if((buffer = calloc(fileSize + content, sizeof(char))) == NULL) //return(4);
if(fread(buffer, sizeof(char), fileSize, fp) != fileSize) //return(5);
if(fclose(fp) == EOF) //return(6);
{
int i, i2;
int lines = 0, ln = 0;
for(i = 0; i < fileSize; i++)
{
if(ln >= (endLine - offsetLine) || i[buffer] == '\0') break;
if(i[buffer] == '\n')
{
lines++;
if(lines >= offsetLine && lines < endLine)
{
char* p = (buffer + i); // \n
//if(*(p - 1) == '\n') continue;
memmove(p + 3,
p,
strlen(p)); // <-- Problematic line (I think)
memcpy(p, " !!", 3);
i += 3;
ln++;
}
}
}
fp = fopen(script, "w");
fwrite(buffer, fileSize + content, sizeof(char), fp);
fclose(fp);
}
free(buffer);
return 0;
}
它相對工作得很好,除了它不追加到最後一行。並且它最後用空格填充文本文件(可能爲NULL)。 我想這是因爲我也動了enzero-ED額外面積content
與:
memmove(p + 3,
p,
strlen(p)); // <-- Problematic line (I think)
所以,也許我需要弄清楚什麼是適當的公式我在爲了使這種使用工作。 任何想法如何使這項工作?
大概,這意味着你的舊問題[在文件中特定範圍的行尾添加字符](http://stackoverflow.com/questions/32132572/appending-characters-at-the-end-特定範圍的文件中的行)不再相關。請刪除它。 –
我建議你對你的文件使用二進制模式:'fopen(...,「... b」) – pmg
@pmg在二進制模式下根本不工作(數據轉換爲無符號字符) – Malina