我通过某个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
在此之后,我的目录为空。