Moving Folder from Google Colab to Google Drive

Hey Guys,
I am super new to fastai. I am using google colab to do my projects. I am trying to build my own data set. I have used googleimagesdownload library to download images of rabbit’s and racoon. Which download the images to ‘contents/downloads’ of my virtual pc. How do I transfer the folder to my google drive?

Thank You! <3

You can pretty much use linux commands for moving and copying files in colab as well. Just use a ! before that command and run the cell as you usually do. For example:
!mv some_folder another_folder/
should work. Also you need to mount google drive first in your colab notebook. How to do it is given in this link.

3 Likes

Thanks, I figured it out.