|
@@ -79,7 +79,7 @@ namespace MIVA
|
|
|
void recorder::Start()
|
|
|
{
|
|
|
if(!this->RecordEnable) return;
|
|
|
-
|
|
|
+ DIR *dirp;
|
|
|
time_t rawtime;
|
|
|
char ctime[80];
|
|
|
struct tm *info;
|
|
@@ -88,14 +88,18 @@ namespace MIVA
|
|
|
strftime(ctime, 80, "%Y-%m-%d_%H:%M:%S", info);
|
|
|
this->outDir = ctime;
|
|
|
this->outDir = this->Dir + this->outDir.substr(0, 7);
|
|
|
-
|
|
|
- if(opendir(this ->outDir.c_str()) == NULL){
|
|
|
+ dirp = opendir(this ->outDir.c_str());
|
|
|
+ if(dirp == NULL){
|
|
|
mkdir((this->outDir).c_str(),S_IRWXU|S_IRWXG|S_IRWXO);
|
|
|
+ }else{
|
|
|
+ closedir(dirp);
|
|
|
}
|
|
|
this->outDir = this->outDir + "/" + ctime + "/";
|
|
|
- if(opendir(this ->outDir.c_str()) == NULL){
|
|
|
+ dirp = opendir(this ->outDir.c_str());
|
|
|
+ if(dirp == NULL){
|
|
|
mkdir((this->outDir).c_str(),S_IRWXU|S_IRWXG|S_IRWXO);
|
|
|
}
|
|
|
+ if(dirp != NULL) closedir(dirp);
|
|
|
m_recorder->enable = true;
|
|
|
}
|
|
|
|