自动创建同类不同名的文件函数(C语言)

前言
  1. 工作太忙了,先不写介绍了,功能都在程序介绍里;
源程序

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

int is_in(char *s, char *c);
char filename[50];

int creat_now_file( char * path,char * prefix, char * file_path);

int main(int argc, char *argv[])
{

	char file_path[50];
	if( creat_now_file("/online/miss_log/","main",file_path) == 0 )
	{
		printf("文件%s创建成功!\n",file_path);
	} 
	else
	{
		printf("文件创建失败!!!\n");
	}

	return 0;
}


/*
函数名:creat_now_file
功能:在file_path_profix指定的目录下添加file_name_prefix开头的不重名文件。
			  同时,如果同前缀文件数量超过了10个,函数会删除最早的一个文件名;
参数:
	file_path_prefix(int) : 指定文件的路径,不包含文件名和索引名;
	file_name_prefix(int) : 指定文件索引名,不包含路径名和路径索引;
	file_path(out) : 输出新建的文件名的完整路径;
返回值:
	  0:文件创建成功;
	-1:file_path_prefix所指定的路径打开失败;
	-2:新文件创建失败;
	-3:最小文件删除失败;
*/

int creat_now_file( char * file_path_profix,char * file_name_prefix, char * file_path)
{
	unsigned int max = 0,min = 0,equal_file_name_count = 0,i = 0;

	static char path[100];
	char path_name_temp[100];
	DIR *directory_pointer;
	struct dirent *entry;

	/********************遍历文件内的文件*********************/
	if((directory_pointer=opendir(file_path_profix))==NULL)
	{
		printf( "%s Error opening \n",file_path_profix );
		return -1;
	}
	else
	{
		unsigned  int postfix_value;
		
		while((entry=readdir(directory_pointer))!=NULL)
		{
			memset( path_name_temp,'\0',sizeof( path_name_temp ) );
			strcat(path_name_temp,file_name_prefix);
			strcat(path_name_temp,"%u");
			//printf("path_name_temp = %s\n",path_name_temp);
			//printf("%s\n",entry-> d_name);//输出当前文件夹下所有的文件名;
			if(is_in(entry->d_name,file_name_prefix)==1)
			{
				printf("%s\n",entry-> d_name);	
				//筛选出最大值和最小值文件名后缀;
				if( sscanf(entry->d_name,path_name_temp,&postfix_value) == 1 ) 
				{
					if( i == 0) 
					{
						min = postfix_value;
						max = postfix_value;
						// printf("0文件名后缀最大值和最小值:max == %u	min == %u\n",max,min);
						i = 1;
					}
					
					if( postfix_value <= min ) min = postfix_value;
					if( postfix_value >= max) max = postfix_value;
				}
				
			}
		}
		closedir(directory_pointer);
	}
	
	printf("文件名后缀最大值和最小值:max == %u	min == %u\n",max,min);

	/*****************创建新的文件************************/
	memset( path,'\0',sizeof( path ) );
	memset( path_name_temp,'\0',sizeof( path_name_temp ) );
	strcat(path_name_temp,file_path_profix);
	strcat(path_name_temp,file_name_prefix);
	strcat(path_name_temp,"%u");

	sprintf(path,path_name_temp,max+1);

	FILE *now_file = fopen(path,"w");
	if( now_file  == NULL)
	{
		printf("文件创建失败!!!\n");
		return -2;
	}
	fclose(now_file);
	
	strcpy(file_path,path);

	/*****************删除旧的文件*************************/

	if( max - min > 9) //超过10个文件就会自动删除编号最小的一个;
	{
		memset( path,'\0',sizeof( path ) );
		memset( path_name_temp,'\0',sizeof( path_name_temp ) );
		strcat(path_name_temp,file_path_profix);
		strcat(path_name_temp,file_name_prefix);
		strcat(path_name_temp,"%u");

		sprintf(path,path_name_temp,min);
		
		if( remove(path) != 0 )
		{
			printf("最小文件删除失败!!!\n");
			return -3;
		}
		
	}
	return 0;
	
}

int is_in(char *s, char *c)
{
	int i=0,j=0,flag=-1;
	
	while(i<strlen(s) && j<strlen( c ))
	{
		if(s[i] == c[j])
		{
			i++;
			j++;
		}
		else
		{
			i=i-j+1;
			j=0;
		}
		
		if(j==strlen( c ))
		{
			flag=1;
			break;
		}
	}
	return flag;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值