gpt4 book ai didi

r - 解压缩 .zip 文件

转载 作者:行者123 更新时间:2023-12-03 13:28:18 26 4
gpt4 key购买 nike

我想在 R 中解压缩一个文件。我完全不知道该怎么做。

我搜索并发现它的方法是这样的:

unzip(zipfile, files = NULL, list = FALSE, overwrite = TRUE,
junkpaths = FALSE, exdir = ".", unzip = "internal",
setTimes = FALSE)

但我不知道我该怎么办。

最佳答案

你可以这样做:

zipF<-file.choose() # lets you choose a file and save its file path in R (at least for windows)
outDir<-"C:\\Users\\Name\\Documents\\unzipfolder" # Define the folder where the zip file should be unzipped to
unzip(zipF,exdir=outDir) # unzip your file

好吧,您也可以以经典方式在 R 中定义两条路径:

假设您的 zip 文件名为 file.zip
zipF<- "C:\\path\\to\\my\\zipfile\\file.zip"
outDir<-"C:\\Users\\Name\\Documents\\unzipfolder"
unzip(zipF,exdir=outDir)
exdir定义要将文件提取到的目录。如果尚不可用,它将被创建。
如果不设置 exdir , unzip只会将其解压缩到您当前的工作目录。

关于r - 解压缩 .zip 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33203800/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com