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
- Is boost::create_directories creates directories instantly? or is it possible that something is wrong there?
- Also sync() and fsync() are guaranteed to flush everything to disc on ext4/xfs.