Linux系统编程(文件)———CP指令判断文件大小
Posted 橙子果果
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux系统编程(文件)———CP指令判断文件大小相关的知识,希望对你有一定的参考价值。
CP指令
比如要将src.c文件拷贝成des.c文件
cp src.c des.c
思路
1.打开src.c
2.读取src到buf
3.打开/创建des.c
4.将buf写到des.c
5.关闭两个文件
测试代码:
#include <stdio.h>
int main(int argc,char **argv)
{
printf("totol params:%d\\n",argc);
printf("NO.1 params :%s\\n",argv[0]);
printf("NO.2 params :%s\\n",argv[1]);
printf("NO.3 params :%s\\n",argv[2]);
return 0;
}
argc是参数个数
argv是字符串数组
所以我们后面写cp代码argc只能是3个。
CP指令代码:
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
int main(int argc,char **argv)
{
int fdSrc;
int fdDes;
char *readBuf=NULL;
if(argc != 3){
printf("PARARM ERROR\\n");
exit(-1);
}
fdSrc = open(argv[1],O_RDWR);
int size = lseek(fdSrc,0,SEEK_END);
lseek(fdSrc,0,SEEK_SET);
readBuf=(char *)malloc(sizeof(char)*size+8);
int n_read = read(fdSrc,readBuf,1024);
fdDes = open(argv[2],O_RDWR|O_CREAT,0600);
int n_write = write(fdDes,readBuf,strlen(readBuf));
close(fdSrc);
close(fdDes);
return 0;
}
最后编译运行
判断文件大小
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
int main()
{
int fd;
char *buf = "Hello Ubuntu!";
fd = open("./file1",O_RDWR);
int filesize = lseek(fd,0,SEEK_END);
printf("file's size is:%d\\n",filesize);
close(fd);
return 0;
}
这里是通过移动光标返回值的方法来读取文件的大小。
以上是关于Linux系统编程(文件)———CP指令判断文件大小的主要内容,如果未能解决你的问题,请参考以下文章
linux 如何不用判断强制cp(复制粘贴覆盖)/bin/cp