Skip to content

Commit

Permalink
Merge pull request #18 from Telmate/PS-2221-FIX
Browse files Browse the repository at this point in the history
change directory creation logic
  • Loading branch information
avis authored Jul 24, 2018
2 parents 955428a + acb4f53 commit 562a3c3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ TelmateFrameGrabberOpenCVImpl::TelmateFrameGrabberOpenCVImpl() {
this->snapInterval = 1000;
this->epName = "EP_NAME_UNINITIALIZED";
this->storagePath = "/tmp/";
this->prevStoragePath = this->storagePath;
this->framesCounter = 0;
this->outputFormat = FGFMT_JPEG;
this->lastQueueTimeStamp = 0;
Expand Down Expand Up @@ -130,7 +131,7 @@ void TelmateFrameGrabberOpenCVImpl::queueHandler() {
std::string filename =
std::to_string((long) this->framesCounter) + "_" + ptrVf->ts + image_extension;

if (this->storagePathSubdir.empty() || this->storagePath != this->prevStoragePath) {
if (this->storagePathSubdir.empty() || !this->storagePath.compare(this->prevStoragePath)) {
this->prevStoragePath = this->storagePath;
this->storagePathSubdir = this->storagePath + "/frames_" + this->getCurrentTimestampString();
boost::filesystem::path dir(this->storagePathSubdir.c_str());
Expand Down

0 comments on commit 562a3c3

Please sign in to comment.