我的文件权限是够的 都是 644
源代码如下
#include
#include
#define N 64
int main(int argc, const char *argv[])
{
int n;
char buf[N];
FILE *fps,*fpd;
if(NULL == (fps = fopen(argv[1],"r")))
{
perror("open fail");
return -1;
}
if(NULL == (fpd = fopen(argv[2],"w")))
{
perror("open fail");
return -1;
}
while((n=fread(buf,1,N,fps)) >= 0)
{
fwrite(buf,1,N,fpd);
}
fclose(fps);
fclose(fpd);
return 0;
}
编译后
我输入了当前目录下的两个文件,一个可读,一个可写,可读的里面有东西。可写的里面是空的,
输入了 ./a.out jielun heheda
运行时出现了
permission denied
这是为啥