Issue
I have a very big Rar files in my google drive which contain several subfloders. Now, I'd like to extract only a few subfolders (not all folder into colab). Is there any way for this? or instance, suppose the zip file name is "Big folder.rar" which contains "folder1", "folder2", "folder3", "folder4", and "folder5". I only want to import and extract "folder1",and "folder4" into my google colab
How is it possible? any suggestion?
Solution
you can use below command and run the cell
!unrar x "Big folder.rar" "/content/sample_data" "folder1" "folder4"
here you are trying to extract folder1, folder4 from Big folder.rar and extracting data to /content/sample_data
Answered By - Joseph Samuel
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.