C问题
vs2022运行(https://fishc.com.cn/thread-66283-1-1.html)win代码报错,手打和复制的都不行 1. 报错信息?2. c/c++不建议用vs2022
3. https://fishc.com.cn/thread-224194-1-1.html 报错信息没有,截图也没有 这段代码是一个用于统计指定路径下所有C语言源文件中的代码行数的程序。你提到该代码在VS 2022中报错,但没有具体说明错误的信息。在代码中,我注意到你使用了非标准的头文件`<io.h>`和`<direct.h>`,这些头文件在一些编译环境中可能不可用。
为了在VS 2022中运行这段代码,你可以进行以下步骤:
1. 删除`<io.h>`和`<direct.h>`头文件的包含语句。
2. 添加`<windows.h>`头文件,用于访问Windows系统函数和宏定义。
修改后的代码如下所示:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
#define MAX 256
long total;
int countLines(const char *filename);
void findAllCodes(const char *path);
void findALLDirs(const char *path);
int countLines(const char *filename)
{
FILE *fp;
int count = 0;
int temp;
if ((fp = fopen(filename, "r")) == NULL)
{
fprintf(stderr, "Can not open the file:%s\n", filename);
return 0;
}
while ((temp = fgetc(fp)) != EOF)
{
if (temp == '\n')
{
count++;
}
}
fclose(fp);
return count;
}
void findAllCodes(const char *path)
{
WIN32_FIND_DATA fa;
HANDLE handle;
char thePath, target;
strcpy(thePath, path);
if((handle = FindFirstFile(strcat(thePath, "/*.c"), &fa)) != INVALID_HANDLE_VALUE)
{
do
{
sprintf(target, "%s/%s", path, fa.cFileName);
total += countLines(target);
}while (FindNextFile(handle, &fa) != 0);
}
FindClose(handle);
}
void findALLDirs(const char *path)
{
WIN32_FIND_DATA fa;
HANDLE handle;
char thePath;
strcpy(thePath, path);
if((handle = FindFirstFile(strcat(thePath, "/*"), &fa)) == INVALID_HANDLE_VALUE)
{
fprintf(stderr, "The path %s is wrong!\n",path);
return;
}
do
{
if (!strcmp(fa.cFileName, ".") || !strcmp(fa.cFileName, ".."))
continue;
if( fa.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
sprintf(thePath, "%s/%s", path, fa.cFileName);
findAllCodes(thePath);
findALLDirs(thePath);
}
}while (FindNextFile(handle, &fa) != 0);
FindClose(handle);
}
int main()
{
char path = ".";
printf("Calculating...\n");
findAllCodes(path);
findALLDirs(path);
printf("Total lines of code: %ld\n\n", total);
system("pause");
return 0;
}
请注意,我已经替换了Windows特定的文件和目录操作函数,以适应VS 2022编译环境。在代码中,我使用了`FindFirstFile`、`FindNextFile`和`FindClose`等函数来
如果回答有帮助,请给我设置最佳答案,求求了
编程追风梦 发表于 2023-7-3 11:18
这段代码是一个用于统计指定路径下所有C语言源文件中的代码行数的程序。你提到该代码在VS 2022中报错,但没 ...
??????哪来的代码 sfqxx 发表于 2023-7-3 12:16
??????哪来的代码
肯定是链接里面小甲鱼的Win代码啊 编程追风梦 发表于 2023-7-3 11:18
这段代码是一个用于统计指定路径下所有C语言源文件中的代码行数的程序。你提到该代码在VS 2022中报错,但没 ...
https://www.aliyundrive.com/s/M8nzQPZkYRc
还是报错,我换VsCode试下 六翻了 发表于 2023-7-4 17:42
还是报错,我换VsCode试下
可以,给我个最佳答案把 编程追风梦 发表于 2023-7-3 11:18
这段代码是一个用于统计指定路径下所有C语言源文件中的代码行数的程序。你提到该代码在VS 2022中报错,但没 ...
>D:\code\Project2\test.c(122,15): error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>D:\code\Project2\test.c(148,33): warning C4133: “函数”: 从“char *”到“LPCWSTR”的类型不兼容
1>D:\code\Project2\test.c(152,29): warning C4477: “sprintf”: 格式字符串“%s”需要类型“char *”的参数,但可变参数 2 拥有了类型“WCHAR *”
1>D:\code\Project2\test.c(152,29): message : 请考虑在格式字符串中使用“%ls”
1>D:\code\Project2\test.c(152,29): message : 请考虑在格式字符串中使用“%lls”
1>D:\code\Project2\test.c(152,29): message : 请考虑在格式字符串中使用“%Ls”
1>D:\code\Project2\test.c(152,29): message : 请考虑在格式字符串中使用“%ws”
1>D:\code\Project2\test.c(147,5): error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>D:\code\Project2\test.c(148,33): error C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>D:\code\Project2\test.c(152,13): error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>D:\code\Project2\test.c(167,33): warning C4133: “函数”: 从“char *”到“LPCWSTR”的类型不兼容
1>D:\code\Project2\test.c(175,23): warning C4133: “函数”: 从“WCHAR ”到“const char *”的类型不兼容
1>D:\code\Project2\test.c(175,53): warning C4133: “函数”: 从“WCHAR ”到“const char *”的类型不兼容
1>D:\code\Project2\test.c(180,30): warning C4477: “sprintf”: 格式字符串“%s”需要类型“char *”的参数,但可变参数 2 拥有了类型“WCHAR *”
1>D:\code\Project2\test.c(180,30): message : 请考虑在格式字符串中使用“%ls”
1>D:\code\Project2\test.c(180,30): message : 请考虑在格式字符串中使用“%lls”
1>D:\code\Project2\test.c(180,30): message : 请考虑在格式字符串中使用“%Ls”
1>D:\code\Project2\test.c(180,30): message : 请考虑在格式字符串中使用“%ws”
1>D:\code\Project2\test.c(166,5): error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>D:\code\Project2\test.c(167,33): error C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>D:\code\Project2\test.c(180,13): error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>已完成生成项目“Project2.vcxproj”的操作 - 失败。 六翻了 发表于 2023-7-4 17:45
>D:\code\Project2\test.c(122,15): error C4996: 'fopen': This function or variable may be unsafe. C ...
这些错误和警告信息是来自于编译器(在这种情况下是C编译器)生成的。它们指出了一些代码中可能存在的问题,并提供了一些建议来解决这些问题。
下面是你提供的错误和警告信息的一些解释以及对应的解决方法:
1. `error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead.`:这个错误提醒你使用了不安全的函数 `fopen`,建议使用更安全的 `fopen_s` 替代它。你可以将 `fopen` 改为 `fopen_s`。
2. `warning C4133: “函数”: 从“char *”到“LPCWSTR”的类型不兼容`:这个警告提示你的代码中存在字符类型的转换问题,从 `char*` 类型到 `LPCWSTR` 类型的转换不兼容。你需要确保转换的正确性,或者修改相关的代码以避免这种转换。
3. `warning C4477: “sprintf”: 格式字符串“%s”需要类型“char *”的参数,但可变参数 2 拥有了类型“WCHAR *”`:这个警告指出了 `sprintf` 函数中格式字符串 `%s` 需要一个 `char*` 类型的参数,但提供的参数是 `WCHAR*` 类型。你可以考虑使用 `%ls` 或者其他相应的格式字符串来匹配参数类型。
4. `error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead.`:这个错误提示你使用了不安全的函数 `strcpy`,建议使用更安全的 `strcpy_s` 替代它。你可以将 `strcpy` 改为 `strcpy_s`。
5. `error C4996: 'strcat': This function or variable may be unsafe. Consider using strcat_s instead.`:这个错误提示你使用了不安全的函数 `strcat`,建议使用更安全的 `strcat_s` 替代它。你可以将 `strcat` 改为 `strcat_s`。
6. `error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead.`:这个错误提示你使用了不安全的函数 `sprintf`,建议使用更安全的 `sprintf_s` 替代它。你可以将 `sprintf` 改为 `sprintf_s`。
解决这些问题的方法是根据编译器的建议进行修改,使用建议中提到的更安全的函数或者采取其他适当的措施来解决类型不匹配的问题。
请注意,如果你的代码确实需要使用不安全的函数,你可以使用预处理指令 `_CRT_SECURE_NO_WARNINGS` 来禁用相关的警告。例如,在源文件的开头添加以下行可以禁用这些特定警告:
#define _CRT_SECURE_NO_WARNINGS
这样可以避免编译器生成与不安全函数相关
求求给个最佳答案
按教程安装VSCode后(https://fishc.com.cn/thread-224194-1-1.html)
直接复制win代码,(https://fishc.com.cn/thread-66283-1-1.html)
不报错,但显示:璁$畻涓?.. 歌者文明清理员 发表于 2023-7-3 11:04
1. 报错信息?
2. c/c++不建议用vs2022
3. https://fishc.com.cn/thread-224194-1-1.html
按教程安装好VSCode,调好了设置
直接复制代码,只输出第一个printf
页:
[1]