mv命令的c代码实现

主要通过rename()函数来实现,不过如果新路径文件已存在则会直接覆盖,如果像要询问后操作是否覆盖,可以通过调用
access()函数来处理;
小记:以下仅供参考,经测试,直接使用rename()函数就可以实现mv的功能。之所以贴出该代码,其中宏定义的打印函数值得借鉴

源码
#include <stdio.h>
#include <dirent.h>
#include <string.h>

typedef unsigned char BYTE;
typedef unsigned int DWORD;
typedef unsigned short WORD;

#define pri(fmt, ...) 	printf("["__FILE__"] <%s>_<%d> " ,__FUNCTION__,__LINE__ );\
						printf(fmt, ##__VA_ARGS__);

int main()
{
   
	/* 给文件重命名时保存临时变量 */
	BYTE newname[80] = {
   0};
	memset(newname, 0 ,sizeof(newname));

	/* 文件描述符 */
	struct dirent *dirp;
	DIR *dp;

	/* 局部变量保存文件名称 */
	BYTE buf[128][64];
	/* 局部变量保存文件名个数 */
	BYTE num=0;

	char *path = "/mnt/hgfs/Ubuntu12.04-share/test/2_file/test_dir";
	/* 打开路径 */
	if ((dp = opendir(path))== NULL)
		{
   
			pri("opendir error \n");//打开目录失败
			return -
C语言中,手动编写复制文件(`cp`)和移动文件(`mv`)的简单版本通常涉及到文件操作和I/O处理。下面是一个非常基础的示例,展示了如何实现文件的复制: ```c #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_LINE 1024 void copy_file(const char* src, const char* dst) { FILE* src_file = fopen(src, "r"); if (src_file == NULL) { perror("Error opening source file."); return; } FILE* dst_file = fopen(dst, "w"); if (dst_file == NULL) { perror("Error opening destination file."); fclose(src_file); return; } char buffer[MAX_LINE]; while (fgets(buffer, MAX_LINE, src_file)) { fputs(buffer, dst_file); } fclose(src_file); fclose(dst_file); } int main() { copy_file("source.txt", "destination.txt"); printf("File copied successfully.\n"); return 0; } ``` 对于移动文件(`mv`),因为文件一旦移动就不可更改位置,所以这里可以先删除目标文件然后再进行复制: ```c #include <stdbool.h> bool remove_file(const char* filename) { FILE* file = fopen(filename, "w"); fclose(file); // This will fail if the file exists, but we can use this for deletion check. return remove(filename) == 0; // Use remove function to delete the file } void mv_file(const char* old_path, const char* new_path) { if (!remove_file(new_path)) { fprintf(stderr, "Error: File '%s' already exists.\n", new_path); return; } copy_file(old_path, new_path); printf("File moved successfully.\n"); } int main() { mv_file("old.txt", "new.txt"); return 0; } ``` 请注意,这仅是个简化的例子,在实际生产环境中,还需要考虑更多的错误处理和边界情况。此外,这个代码不会处理大文件,因为它一次性读取整个文件到内存中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值