Last active
January 28, 2023 12:57
-
-
Save farzadhallaji/60509cd9762396690345e713f434cc33 to your computer and use it in GitHub Desktop.
import folder on google colab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from google.colab import drive | |
drive.mount("/content/drive") | |
import os | |
path = '/content/drive/My Drive/path_to_folder/' #replace path_to_folder with your desired folder path | |
os.chdir(path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment