Skip to content

Instantly share code, notes, and snippets.

@verajosemanuel
Created January 15, 2021 09:35
Show Gist options
  • Select an option

  • Save verajosemanuel/4ce596be01f9e6e4e918e887c5e1e39c to your computer and use it in GitHub Desktop.

Select an option

Save verajosemanuel/4ce596be01f9e6e4e918e887c5e1e39c to your computer and use it in GitHub Desktop.
#uncompress #rar files in windows with #R
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