我想创建一个函数来在colab中一一读取文件夹中的文件。 我在下面尝试过,即我将文件夹上传到“我的云端硬盘”,然后尝试从那里访问它。 但是,它仍然显示错误。
from google.colab import drive
drive.mount('/content/gdrive')
mypath = "/gdrive/My Drive/resume pdf" #enter your path here where you saved the resumes
onlyfiles = [os.path.join(mypath, f) for f in os.listdir(mypath) if os.path.isfile(os.path.join(mypath, f))]
错误->
FileNotFoundError Traceback (most recent call last)
<ipython-input-15-a7a8abc74cc6> in <module>()
1 mypath = "/gdrive/My Drive/resume pdf" #enter your path here where you saved the resumes
----> 2 onlyfiles = [os.path.join(mypath, f) for f in os.listdir(mypath) if os.path.isfile(os.path.join(mypath, f))]
FileNotFoundError: [Errno 2] No such file or directory: '/gdrive/My Drive/resume pdf'`enter code here`
我已经检查过驱动器中是否有一个名为“ 恢复pdf ”的文件夹。 那么如何在colab中上载本地文件夹并逐个访问它的每个文件?
答案 0 :(得分:0)
您将其安装在/content/gdrive
上,但是尝试在/gdrive
上对其进行访问,这就是错误。
只需更改为
mypath = "/content/gdrive/My Drive/resume pdf"