How to delete a locally uploaded file on google colab?
How to delete a locally uploaded file on google colab?
I'm trying to delete a file that I uploaded on Google colab using the following code:
from google.colab import files
uploaded = files.upload()
How to delete the file now? e.g If the file's name is 'sample.jpg' .
3 Answers
3
Try this
!rm sample.jpg
Then check that it is gone with !ls -al
!ls -al
Update (nov 2018)
Now you can click to open left pane, browse the files tab, then right click to select and delete a file.
Answer from @Korakot works for a single file and in case, to delete entire folder or subfolders or files
use
!rm -rf <folder_name>
!rm -rf <folder_name>
In the menu in Google Collab chose Runtime->Restart all runtimes. This will clear up all your file uploads.
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.