- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试删除一个文件,然后从一个不起作用的函数中以已删除文件的名称重命名临时文件。请帮助我
boolean delete_user(char user_name[256]) //only for Admin
{
boolean status = FALSE;//what does the function return
User_Data *ud = NULL;
boolean found_user = FALSE;
FILE *new_file = NULL;
FILE *fp = NULL;
char user_name_to_copy[256];
char password_to_copy[256];
char old_file_name[256];
ud = find_user(user_name);
if (ud == NULL) {
printf("The username wasn't found!\n");
return FALSE;
}
if (!strcmp(ud->permission_type, "Admin")) {
printf("Cant delete an admin.");
return FALSE;
} else {
// the user to delete was found
new_file = fopen("duplicate.txt", "wt");
strcpy(old_file_name, ud->permission_type);
strcat(old_file_name, "s.txt"); //the name of the file is in plural and ends with .txt
fp = fopen(old_file_name, "rt");
while (!feof(fp)) {
//copy all the users except the user to delete the new file
fscanf(fp, "%s %s\n", user_name_to_copy, password_to_copy);
if (strcmp(user_name_to_copy, user_name)) {
fprintf(new_file, "%s %s\n", user_name_to_copy, password_to_copy);
}
}
fclose(fp);
fclose(new_file);
printf(" %d ", remove(old_file_name));
rename("duplicate.txt", old_file_name);
remove("duplicate.txt");
return TRUE;
}
}
当我从另一个函数调用它时,这个函数不起作用,但从 main 函数调用它时,它工作得很好。
最佳答案
您的代码中存在多个问题:
您没有检查 fopen()
是否成功打开了文件。
在连接字符串以计算权限文件时,您无法防止潜在的缓冲区溢出。
您应该将数组大小传递给 fscanf
以防止潜在的缓冲区溢出。
您应该使用 strerror(errno)
输出有意义且信息丰富的错误消息,以及失败的原因。
复制权限文件的循环不正确:Why is “while ( !feof (file) )” always wrong?
即使重命名失败但删除了重复文件,但设法删除了原始文件:两个文件都可能丢失。相反,如果重命名操作成功,删除重复文件是多余的。
以下是您可以如何改进代码:
#include <errno.h>
#include <string.h>
boolean delete_user(char user_name[256]) { //only for Admin
boolean status = FALSE; // the function return value
User_Data *ud = NULL;
boolean found_user = FALSE;
FILE *new_file = NULL;
FILE *fp = NULL;
char user_name_to_copy[256];
char password_to_copy[256];
char old_file_name[256];
ud = find_user(user_name);
if (ud == NULL) {
printf("User '%s' was not found!\n", user_name);
return FALSE;
}
if (!strcmp(ud->permission_type, "Admin")) {
printf("Cannot delete user '%s', user has admin status.\n", user_name);
return FALSE;
}
// the user to delete was found
new_file = fopen("duplicate.txt", "wt");
if (new_file == NULL) {
printf("Cannot open file 'duplicate.txt': %s\n"
strerror(errno));
return FALSE;
}
// the name of the file is in plural and ends with .txt
snprintf(old_file_name, sizeof old_file_name, "%ss.txt", ud->permission_type);
fp = fopen(old_file_name, "rt");
if (fp == NULL) {
printf("Cannot open user file '%s': %s\n"
old_file_name, strerror(errno));
return FALSE;
}
// copy all the users except the user to delete the new file
while (fscanf(fp, "%255s %255s\n", user_name_to_copy, password_to_copy) == 2) {
if (strcmp(user_name_to_copy, user_name)) {
fprintf(new_file, "%s %s\n", user_name_to_copy, password_to_copy);
}
}
fclose(fp);
fclose(new_file);
if (remove(old_file_name)) {
printf("Error removing file '%s': %s\n",
old_file_name, strerror(errno));
remove("duplicate.txt");
return FALSE;
}
if (rename("duplicate.txt", old_file_name)) {
printf("Error renaming file 'duplicate.txt' to '%s': %s\n",
old_file_name, strerror(errno));
// keep duplicate.txt
return FALSE;
}
// duplicates.txt was successfully renamed, no need to remove it.
return TRUE;
}
注意事项:
rename()
可能无法将重复文件从当前目录移动到该目录。如果这是失败的原因,应该运行代码并进行适当的诊断。关于c - c 中的 remove() 在函数中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41918268/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!