I\'m simply trying to handle an uploaded file and write it in a working dir which name is the system timestamp. The problem is that I want to create that directory wi
According to the official python documentation the mode argument of the os.makedirs
function may be ignored on some systems, and on systems where it is not ignored the current umask value is masked out.
Either way, you can force the mode to 0o777 (0777 threw up a syntax error) using the os.chmod
function.