mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
CFileHelpers::removeDir: Better error message
- No error when directory does not exist
Origin commit data
------------------
Branch: ni/coolstream
Commit: ff9a71cd36
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2016-09-06 (Tue, 06 Sep 2016)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -925,8 +925,14 @@ bool CFileHelpers::removeDir(const char *Dir)
|
||||
|
||||
dir = opendir(Dir);
|
||||
if (dir == NULL) {
|
||||
fh->setDebugInfo("Error opendir().", __path_file__, __func__, __LINE__);
|
||||
fh->printDebugInfo();
|
||||
if (errno == ENOENT)
|
||||
return true;
|
||||
if (!fh->getConsoleQuiet())
|
||||
dprintf(DEBUG_NORMAL, "[CFileHelpers %s] remove directory %s: %s\n", __func__, Dir, strerror(errno));
|
||||
char buf[1024];
|
||||
memset(buf, '\0', sizeof(buf));
|
||||
snprintf(buf, sizeof(buf)-1, "remove directory %s: %s", Dir, strerror(errno));
|
||||
fh->setDebugInfo(buf, __path_file__, __func__, __LINE__);
|
||||
return false;
|
||||
}
|
||||
while ((entry = readdir(dir)) != NULL) {
|
||||
|
Reference in New Issue
Block a user