在R中,从7z文件(ftp)中提取文件并保存

时间:2017-08-14 21:04:08

标签: r

我通过某个ftp站点获得了7.z文件: ftp://.../2009/file.7z 我想提取(或解压缩)里面的文件并将其保存在“C:/ myfiles”目录中

我不能这样做! 一些帮助?

被修改

我这样做,但它不起作用。

zipF <- ftp://.../2009/file.7z
outDir<-getwd() # Define the folder where the zip file should be unzipped to 
unzip(zipF,exdir=outDir)  # unzip your file 
Warning message:
In unzip(zipF, exdir = outDir) : error 1 in extracting from zip file

在此之后,我的目录为空。

0 个答案:

没有答案