Skip to content
Snippets Groups Projects
Commit 6044504c authored by rswindell's avatar rswindell
Browse files

Moved delfiles here from sbbs3/file.cpp (for sbbsecho).

parent 2f8f5aaf
No related branches found
No related tags found
No related merge requests found
......@@ -543,6 +543,34 @@ int DLLCALL getfattr(const char* filename)
#endif
}
/****************************************************************************/
/* Deletes all files in dir 'path' that match file spec 'spec' */
/****************************************************************************/
ulong DLLCALL delfiles(char *inpath, char *spec)
{
char path[MAX_PATH+1];
char lastch;
uint i,files=0;
glob_t g;
lastch=*lastchar(inpath);
if(lastch!='/' && lastch!='\\')
sprintf(path,"%s%c",inpath,BACKSLASH);
else
strcpy(path,inpath);
strcat(path,spec);
glob(path,0,NULL,&g);
for(i=0;i<g.gl_pathc;i++) {
if(isdir(g.gl_pathv[i]))
continue;
CHMOD(g.gl_pathv[i],S_IWRITE); // Incase it's been marked RDONLY
if(remove(g.gl_pathv[i])==0)
files++;
}
globfree(&g);
return(files);
}
/****************************************************************************/
/* Return free disk space in bytes (up to a maximum of 4GB) */
/****************************************************************************/
......
......@@ -192,6 +192,7 @@ DLLEXPORT BOOL DLLCALL isdir(const char *filename);
DLLEXPORT char* DLLCALL getfname(const char* path);
DLLEXPORT int DLLCALL getfattr(const char* filename);
DLLEXPORT ulong DLLCALL getfreediskspace(const char* path);
DLLEXPORT ulong DLLCALL delfiles(char *inpath, char *spec);
#if defined(__unix__)
DLLEXPORT void DLLCALL _splitpath(const char *path, char *drive, char *dir,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment