Created
January 15, 2021 09:35
-
-
Save verajosemanuel/4ce596be01f9e6e4e918e887c5e1e39c to your computer and use it in GitHub Desktop.
#uncompress #rar files in windows with #R
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| z7path = shQuote('C:\\Program Files\\7-Zip\\7z') | |
| cmd <- paste(z7path, ' e ', rarfile, ' -ir!*.* -o', '"', temp_folder, '"', sep='') | |
| system(cmd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment