id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 13576,boost filesystem create_directories function fails randomly when accessing to a mapped network drive,sergio.anza@…,Beman Dawes,"When trying to create a folder in a mapped network drive with boost filesystem create_directories function, I get random errors of type: ""The system cannot find the path specified."". By random I mean that sometimes I get the error and sometimes I don't. And yes, I have checked: * It is a valid path. * It is not a too long path. In fact, I use windows extended path as \?\PATH. * The network drive works perfectly, and it is inside our company local network (Gigabit ethernet). * I have write permissions. * There are not unicode characters. Below the code (adapted to make it more simple). {{{ #include ""boost/filesystem.hpp"" #include #include #include #include #define MAX_RETRIES 10 #define RETRY_TIME 5000 //in millisecond namespace fs = boost::filesystem; bool createDirectory(const std::string& folderPath) { //If the function does not succeed to create the directory in first place, it will retry after RETRY_TIME miliseconds a maximum number of MAX_RETRIES. for (unsigned int i=0; i