如何替换Google Colab中的文件

时间:2018-06-12 16:46:24

标签: python file google-colaboratory

这是我从谷歌硬盘下载和解压缩文件的代码。

fileId = drive.CreateFile({'id': '1tQq-ihnTbRj6GlObBrm17Ob6j1XHHJL2'}) 
print (fileId['title'])
fileId.GetContentFile('tweets_research.zip')
!unzip tweets_research.zip -d ./

但是已经有一些文件,我想替换它们。它给了我 这个选项。

enter image description here 但无论我在键盘上按什么都没关系,它无效。

2 个答案:

答案 0 :(得分:1)

使用-o选项覆盖文件,例如

!unzip -o tweets_research.zip -d ./

答案 1 :(得分:1)

您可以使用管道将您的选择作为命令的输入回显。

如果是重命名:

!echo "r"| unzip tweets_research.zip -d ./