Someone uploaded a folder on Google Drive and shared it with me. I installed Google Colab and opened an IPhython notebook in colab. For connecting it with Google Drive, I did:
from google.colab import drive
drive.mount('/content/gdrive')
I continued to run the code and do some imports, and at some point I need to give the path for this folder. I tried:
path = "/content/gdrive/MyDrive/the_folder/"
But when I checked on the left-hand-side, under "Files"->"gdrive"->"MyDrive", it's not even there, so no wonder it's not found when I run the code later. Did I mount it incorrectly?