我正在使用一些非常标准的代码:
1 if not os.path.exists(args.outputDirectory):
2 if not os.makedirs(args.outputDirectory, 0o666):
3 sys.exit('Fatal: output directory "' + args.outputDirectory + '" does not exist and cannot be created')
我删除了目录,并且1
在2
. 我超越了这一点,并点击了错误消息3
。
但是,当我检查时,目录已成功创建。
drwxrwsr-x 2 userId userGroup 4096 Jun 25 16:07 output/
我错过了什么??