本文共 1370 字,大约阅读时间需要 4 分钟。
-
-
-
-
- #include <stdio.h>
- #include <io.h>
- #include <string.h>
- #include <direct.h>
-
- int removeDir(const char* dirPath)
- {
-
- struct _finddata_t fb;
- char path[250];
- long handle;
- int resultone;
- int noFile;
-
- noFile = 0;
- handle = 0;
-
-
-
- strcpy(path,dirPath);
- strcat (path,"/*");
-
- handle = _findfirst(path,&fb);
-
- if (handle != 0)
- {
-
- while (0 == _findnext(handle,&fb))
- {
-
- noFile = strcmp(fb.name,"..");
-
- if (0 != noFile)
- {
-
- memset(path,0,sizeof(path));
- strcpy(path,dirPath);
- strcat(path,"/");
- strcat (path,fb.name);
-
- if (fb.attrib == 16)
- {
- removeDir(path);
- }
-
- else
- {
- remove(path);
- }
- }
- }
-
-
- _findclose(handle);
- }
-
- resultone = rmdir(dirPath);
- return resultone;
- }
转载地址:http://xdyyx.baihongyu.com/