linux下批量给文本文件头尾加任意内容程序

博主分享了自己使用C语言在Linux环境下编写的一个程序,该程序能批量为C语言代码文件添加```c```的Markdown语法,以便在Typora等编辑器中实现代码高亮。程序涉及文件操作、目录遍历和文件类型判断,通过创建临时文件实现内容替换。测试结果显示程序运行正常。
摘要由CSDN通过智能技术生成

事情的经过是这样的,我想批量给c程序的

开头加上```c\n,结尾加上\n```,

在网上查了下,没查到类似的工具,正好最近在学linux,就打算自己写一个程序,奈何自己的半吊子水平,写了一个多小时才写好。 这里最大设置了读100000字节的文件,可以根据需求自己修改

源码:

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<sys/types.h>
#include<unistd.h>
#include<sys/stat.h>
#include<fcntl.h>
#include<dirent.h>

int main(int argc,char *argv[])
{
	char *strr[100];
	for(int i=0;i<100;i++)
	{
		strr[i]=(char *)malloc(128);
	}
	int i=0;
	//打开目录
	//DIR *opendir(const char *name);
	DIR *pDir = opendir(argv[1]);
	if(pDir==NULL)
	{
		perror("opendir error");
		return -1;
	}

	//循环读取目录项
	//struct dirent *readdir(DIR *dirp);
	struct dirent *pDent = NULL;
	while((pDent=readdir(pDir))!=NULL)
	{
		//过滤掉.和..文件
		if(strcmp(pDent->d_name, ".")==0 || strcmp(pDent->d_name, "..")==0)
		{
			continue;
		}
		//判断文件类型
		switch(pDent->d_type)
		{
			case DT_REG:
				sprintf(strr[i],"%s/%s", argv[1],pDent->d_name);
				printf("%s",strr[i]);
				i++;
				break;
			default:
				break;
		}

		printf("\n");
	}

	//关闭目录
	closedir(pDir);

	int len = i;

	for(i=0;i<len;i++)
	{
		int fd = open(strr[i],O_RDWR | O_CREAT,0777);
		if(fd<0)
		{
			perror("open error");
		}
		char buf[100000];
		memset(buf,0,sizeof(buf));
		read(fd,buf,sizeof(buf));


		close(fd);

		char name[128];
		memset(name,0,sizeof(name));
		sprintf(name,"%scopy",strr[i]);
		printf("%s\n",name);
		fd = open(name,O_RDWR | O_CREAT | O_APPEND,0777);

		char buf2[100000];
		memset(buf2,0,sizeof(buf));
		char *str="```c\n";
		char *str2="```";
		sprintf(buf2,"%s%s%s",str,buf,str2);
		//printf("%s",buf2);

		write(fd,buf2,strlen(buf2));

		close(fd);
	}

	return 0;
}

拿了几个文本文件测试一下,未发现任何问题,用
Typora正常打开
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值