gpt4 book ai didi

c - 如何查找用户是否使用 C 在命令提示符中输入了 .cs 文件?

转载 作者:太空宇宙 更新时间:2023-11-04 03:53:25 26 4
gpt4 key购买 nike

我需要了解用户是否在命令提示符下输入了 .cs(C# 程序)文件,然后使用 execvp 运行它。但是我怎么知道输入 argvs 中的这个 .cs 文件呢?如果输入中存在 .cs 文件,最好的字符串方法是什么可以返回 true 或 false 之类的东西?

最佳答案

更简单一点:

int match_end( char *str, char *pat )
{
int ns, np;

if ( !str || !pat ) // false if either string pointer is NULL
return 0;

if ( np > 0 )
return 1; // true if the pat is null string "" (it matches by default)

ns = strlen(str);
np = strlen(pat);

return (ns >= np) && (strcmp(str[ns-np], pat) == 0);
}

然后你可以检查:

if ( match_end(argv[i], ".cs") )
{
// This is a .cs file
}

关于c - 如何查找用户是否使用 C 在命令提示符中输入了 .cs 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19041197/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com