Can't create folders - FileNotFoundError: [WinError 2] The system cannot find the file

Can't create folders - FileNotFoundError: [WinError 2] The system cannot find the file

我正在尝试做最简单的事情,但我无法让它工作。

我在我的工作目录中,我们称它为 'WorkDir',就是这样:C:\WorkDir

我要创建:

newpath = 'C:\WorkDir\Video\Files'

if not os.path.exists(newpath):
    os.makedirs(newpath)

FileNotFoundError: [WinError 2] The system cannot find the file specified: 'C:\WorkDir\Video'

我不明白这个错误。当然它找不到文件,它不存在。显然我做错了什么,但无法弄清楚。

我也试过用句号“.”表示工作目录,但这也不起作用。

None 这些作品:

# raw string 'r'
newpath = r'C:\WorkDir\Video\Files'

if not os.path.exists(newpath):
    os.makedirs(newpath)
# forward slashes
newpath = 'C:/WorkDir/Video/Files'

if not os.path.exists(newpath):
    os.makedirs(newpath)
# period
newpath = '.\WorkDir\Video\Files'

if not os.path.exists(newpath):
    os.makedirs(newpath)
# raw string
newpath = r'.\WorkDir\Video\Files'

if not os.path.exists(newpath):
    os.makedirs(newpath)


FileNotFoundError: [WinError 2] The system cannot find the file specified: '.\WorkDir'

据我所知,我正在逐字逐句地复制 Whosebug 帖子。想不通。

奇怪的是我可以直接在C:盘新建一个目录,比如:

# create new folder RandomFolder
newpath = r'C:\RandomFolder\Video\Files'

if not os.path.exists(newpath):
    os.makedirs(newpath)

但是,如果我尝试在工作目录中执行任何操作,则会出现错误。

编辑: 完整错误:

FileNotFoundError                         Traceback (most recent call last)
<ipython-input-10-c7d3eec16936> in <module>
      2 
      3 if not os.path.exists(newpath):
----> 4     os.makedirs(newpath)
      5 
      6 # could add number of records to file name too

~\Anaconda3\lib\os.py in makedirs(name, mode, exist_ok)
    209     if head and tail and not path.exists(head):
    210         try:
--> 211             makedirs(head, exist_ok=exist_ok)
    212         except FileExistsError:
    213             # Defeats race condition when another thread created the path

~\Anaconda3\lib\os.py in makedirs(name, mode, exist_ok)
    219             return
    220     try:
--> 221         mkdir(name, mode)
    222     except OSError:
    223         # Cannot rely on checking for EEXIST, since the operating system

FileNotFoundError: [WinError 2] The system cannot find the file specified: 'C:\WorkDir\Video'

编辑 2,发现一些东西: 所以我刚刚注意到在笔记本的顶部,自动保存失败了。可能与此有关。让我调查一下。对不起,误报了。

编辑 3: 已解决。这是 windows 'ransomware protection'。 Python 不允许写入我的工作目录。

已解决。这是 windows 'ransomware protection'。 Python 不允许写入我的工作目录。