我在 Google Colab 工作,我正在尝试将工作目录更改为我的桌面(桌面 = 荷兰语中的 Bureaublad,这就是为什么你在我的路径中看到“bureaublad”的原因)。但是,更改工作目录不断给我这样的目录不存在的错误。我只是复制了路径,所以一切都应该存在!在这里查看我的代码:
代码:
import os
print(os.getcwd())
os.listdir()
输出:
/content
['.config', 'sample_data']
代码:
os.chdir(r'C:\Users\emile\OneDrive\Bureaublad\Completed Communications Transcriptions')
输出:
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-29-c4d97f3ec347> in <module>()
----> 1 os.chdir(r'C:\Users\emile\OneDrive\Bureaublad\Completed Communications Transcriptions')
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\emile\\OneDrive\\Bureaublad\\Completed Communications Transcriptions'
我做错什么了?