|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
在VS2022上想删除和重命名文件,使用system操作,结果在删除时,提示另一个程序正在使用此文件,进程无法访问。
但此时FILE指针已用fclose关闭,也无打开相关文件,这是什么情况呢。
补充:相同的方法在codeBlocks编译器上可以正常删除。
程序中user_id指已用户账号命名的txt文件。
使用int a=fclose(fp),int b=fclose(fpw)输出a,b都是0,文件应该是关闭成功的
请问大家这是什么情况,应该怎么解决
下方是代码以及代码截图,运行结果截图的链接
//修改联系人姓名
void updateUserName(char name[20]) {
FILE* fp;
FILE* fpw;
char name_update[100];
char fileName[20];
strcpy(fileName, "tmp.txt");
addressBookNode* p = (addressBookNode*)malloc(sizeof(addressBookNode));
fp = fopen(user_id, "r");
fpw= fopen("tmp.txt", "w");
printf("请输入新的名字:");
scanf("%s", name_update);
while (!feof(fp))
{
if(fscanf(fp, "%s%s", p->name, p->number) == 2)
{
if (strcmp(p->name, name) == 0)
{
fprintf(fpw,name_update);
fprintf(fpw,"\t");
fprintf(fpw,p->number);
fprintf(fpw,"\n");
printf("修改成功\n");
}
else
{
fprintf(fpw, p->name);
fprintf(fpw, "\t");
fprintf(fpw, p->number);
fprintf(fpw, "\n");
}
}
}
int a=fclose(fp);
int b=fclose(fpw);
printf("%d %d\n", a, b);
/*
生成删除与重命名文件的命令
*/
char* del = "del ";
char *removeSentence= (char*)malloc(strlen(del) + strlen(user_id));
strcpy(removeSentence, del);
strcat(removeSentence, user_id);
char* rename = "rename ";
char* firstFile = user_id;
char* kg = " ";
char* secondFile = fileName;
char* renameSentence = (char*)malloc(strlen(rename) + strlen(firstFile) + strlen(kg) + strlen(secondFile));
strcpy(renameSentence, rename);
strcat(renameSentence, secondFile);
strcat(renameSentence, kg);
strcat(renameSentence, firstFile);
system(removeSentence);
system(renameSentence);
}
https://img-mid.csdnimg.cn/relea ... s=image/auto-orient,1
https://img-mid.csdnimg.cn/relea ... s=image/auto-orient,1
https://img-mid.csdnimg.cn/relea ... s=image/auto-orient,1
|
|