- 论坛徽章:
- 0
|
本帖最后由 mkshtk 于 2012-08-23 21:20 编辑
程序需要实现功能:输入name和path,查找并判断name是文件还是文件夹,若name是文件则选择加密,若是目录则遍历该目录,对下面的文件进行加密。
加密算法暂时没有写,只是大概要实现功能。希望大牛们多多指点,帮我删减优化掉一些字段,减小耦合度,能实现模块化。谢谢 - # include <dirent.h>
- # include <string.h>
- # include <stdio.h>
- # include <sys/stat.h>
- # include <stdlib.h>
- # include <unistd.h>
- # include <stdbool.h>
- /*
- 函数名:jiami()
- 作用:解密算法
- 参数:* stream--需要加密的字符串指针
- * store1--加密完成后的字符串指针
- */
- int jiami(char *stream1, char *store1)
- {
- int i, len;
- len = strlen(stream1);
- for(i=0; i<len; i++)
- {
- store1[i] = stream1[i];
- }
- return 0;
- }
- /*
- 函数名:jiemi()
- 作用:解密算法
- 参数:* stream--需要解密的字符串指针
- * store--解密完成后的字符串指针
- */
- int jiemi(char *stream2, char *store2)
- {
- int i, len;
- len = strlen(stream2);
- for(i=0; i<len; i++)
- {
- store2[i] = stream2[i]+1;
- }
- return 0;
- }
- /*
- 函数名:En_Code()
- 作用:加密函数
- 参数:* pSrc--需要加密的字符串指针
- * pDst--生成目标文件的文件指针
- */
- void En_Code(char *pSrc, FILE *pDst)
- {
- char *out1 = (char *)malloc(sizeof(pSrc)*100);
- jiami(pSrc,out1);
- fwrite(out1, strlen(out1), 1, pDst);
- free(out1);
- out1 = NULL;
- }
- /*
- 函数名:De_Code()
- 作用:解密函数
- 参数:* pSrc--需要解密的字符串指针
- * pDst--生成目标文件的文件指针
- */
- void De_Code(char *pSrc, FILE *pDst)
- {
- char *out2 = malloc(sizeof(pSrc)*100);
- jiemi(pSrc,out2);
- fwrite(out2, strlen(out2), 1, pDst);
- free(out2);
- out2 = NULL;
- }
- /*
- 函数名:Open_file()
- 作用:判断源文件和需要生成的目标文件是否能够打开
- 参数:*Src_file--源文件指针
- *Dst_file--生成目标文件指针
- */
- int Open_file(char *Src_file, char *Dst_file)
- {
- FILE *fp1, *fp2;
- long curpos, flen;
- char *buff;
- fp1=fopen(Src_file, "rb");
- fp2=fopen(Dst_file, "wb+");
- if(fp1 == NULL)
- {
- printf("cannot open source file.\n");
- exit(1);
- }
- if(fp2 == NULL)
- {
- printf("cannot open destination file.\n");
- exit(1);
- }
-
- curpos = ftell(fp1);
- fseek(fp1, 0L, SEEK_END);
- flen = ftell(fp1);
- buff = (char *)malloc(flen*10);
- memset(buff, 0, flen*10);
- if(buff == NULL)
- {
- fclose(fp1);
- return 0;
- }
- fseek(fp1, curpos, SEEK_SET);
- fread(buff, flen, 1, fp1);
- En_Code(buff,fp2);
- free(buff);
- buff = NULL;
- fclose(fp1);
- fclose(fp2);
- return 0;
- }
- /*
- 函数名:File_Exist()
- 作用:判断指定路径下文件是否存在,不查询含子目录
- 参数:* fullpath---完整的路径加上文件名
- */
- bool File_Exist(char * fullpath)
- {
- if((access(fullpath,F_OK)) == 0)
- return true;
- else
- return false;
- }
- /*
- 函数名:List()
- 作用:循环便利目录,并对查找的文件进行加密等操作
- 参数:* path--要查找的目录地址指针
- */
- void List(char * path)
- {
- struct dirent *ent = NULL;
- DIR *pDir;
- char dir[512];
- struct stat statbuf;
- char * store_path = "store";
- char store_fullpath[512];
- if((pDir = opendir(path)) == NULL)
- {
- fprintf(stderr, "cannot open directory:%s\n", path);
- return;
- }
- while((ent = readdir(pDir)) != NULL)
- {
- snprintf(dir, 512, "%s/%s", path, ent->d_name);
- lstat(dir, &statbuf);
- if(S_ISDIR(statbuf.st_mode))
- {
- if(strcmp(".", ent->d_name) == 0 || strcmp("..", ent->d_name) == 0)
- continue;
- List(dir);
- }
-
- if(S_ISREG(statbuf.st_mode))
- {
- snprintf(store_fullpath, 512, "%s/%s", store_path, ent->d_name);
- Open_file(dir, store_fullpath);
- }
- }
- closedir(pDir);
- }
- /*
- 函数名:Search_Dir()
- 作用:遍历查找指定目录下文件是否存在
- 参数:* path---查找的路径
- * name--文件名
- */
- bool Search_Dir(char * path, char *name)
- {
- char dir[50];
- struct dirent * ent;
- DIR *pdir;
- struct stat statbuf;
- if((pdir = opendir(path)) == NULL)
- {
- fprintf(stderr, "Cannot open directory:%s\n", path);
- return false;
- }
- while((ent = readdir(pdir))!=NULL)
- {
- if((strncmp(ent->d_name,".",1))==0 || (strncmp(ent->d_name,"..",2))==0)
- continue;
- snprintf(dir,50,"%s/%s", path, ent->d_name);
- lstat(dir, &statbuf);
-
- if(strncmp(name,ent->d_name,sizeof(name))==0)
- {
- if(S_ISDIR(statbuf.st_mode))
- {
- printf("2:'%s' is dir and exist!-----path:'%s'\n",name,dir);
- List(dir);
- }
- if(S_ISREG(statbuf.st_mode))
- {
- printf("'%s' id file and exist!-----full path:'%s'\n",name,dir);
- }
- return true;
- }
- else
- {
- if(S_ISDIR(statbuf.st_mode))
- {
- Search_Dir(dir,name);
- }
- }
- }
- closedir(pdir);
- return 0;
- }
- int main()
- {
- struct stat main_buff;
- char name[50];
- char path[50];
- char path_name[50];
- char output[50];
- printf("Please input the path:\n");
- scanf("%s", path);
- printf("Please input the file name:\n");
- scanf("%s", name);
- printf("Please input the output path and file name:\n");
- scanf("%s", output);
- snprintf(path_name, 50, "%s/%s", path, name);
- if(File_Exist(path_name))
- {
- printf("1:The file '%s' exist!---path:'%s'\n", name, path_name);
- lstat(path_name, &main_buff);
- if(S_ISDIR(main_buf.st_mode))
- {
- if(strcmp(".", ent->d_name) == 0 || strcmp("..", ent->d_name) == 0)
- continue;
- List(dir);
- }
-
- if(S_ISREG(main_buff.st_mode))
- {
- Open_file(path_name,output);
- }
- }
- else
- Search_Dir(path, name);
- return 0;
- }
复制代码 |
|