I am using boost::filesystem::create_directories() to create new directories. But, when I try to access these directories shortly after creation, I get an error saying no such directory. But if I sleep for a while after creating directories everything is fine (I do not get the error). Also, I tried using fsync() and sync() after creating directories but it made no difference. I am testing it on ext4 and xfs file systems and boost version is boost 1.44

My questions are

  1. Is boost::create_directories creates directories instantly? or is it possible that something is wrong there?
  2. Also sync() and fsync() are guaranteed to flush everything to disc on ext4/xfs.
link|improve this question

77% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.