采用vi进虚族行源代码编写,编写完成后,:wq存盘退出,如:
vi test.c
在命令行下,运行gcc编译程伍核序,生成腔誉掘执行码,如:
gcc -o test test.c
-o 表示指明生成的执行码名称
运行编译后的执行码
./test
#include <stdio.h>#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
char file_name[64] = {0}
char file_path[128] = {0}
char dir_path[64] = {0}
char cmd[256] = {0}
int re = 0
FILE *pf = NULL
char *p = NULL
printf("请输入文件名:\n")
scanf("%s", file_name)
凳悄慎运扰 snprintf(cmd, 256, "find -name %s > tmp.txt", file_name)//如果文件不在程序运行的本地目录(或者子目录)下,则需要改成find / -name xxxx 但耗时会很长
system(cmd)
//文件中取绝对路径
pf = fopen("tmp.txt", "r")
if (pf)
{
re = fscanf(pf, "%s", file_path)//只取第一行 也就是默认不存在同名文件
if (-1 == re)
{
printf("err0\n")
return 0
}
else
{
flcose(pf)
pf = NULL
}
}
else
{
printf("err1\n")
return 0
}
if (0 == strlen(file_path))
枣敬 {
printf("err2\n")
return 0
}
//获取目录名
p = strstr(file_path, file_name)
if (p)
{
*p = '\0'
strcpy(dir_path, file_path)//也可以不cp直接用file_path
}
//通过c语言展开ls这个路径c语言变量 其实我没有理解这句话... 先这么做吧
snprintf(cmd, 256, "ls %s", dir_path)
system(cmd)
return 0
}
如果哪里有异常就加printf打印出来各个变量
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)