I need to unzip multiple files at once and add it as a data frame in my R dashboard.
I'm currently using this code:
zipF<- "/Users/sahilverma13/Desktop/chat_data_2017-01-30_IST.zip"
outDir<-"/Users/sahilverma13/Desktop"
unzip(zipF,exdir=outDir)
But I have to do it for every file separately.
zipF <- list.files(pattern="*.zip")
I tried using the wildcard but it doesn't work.
Please help.