Hi I have multiple zipped folders and each zipped folder contains one password protected excel spreadsheet.
#Get all the zip files
zipF = list.files(path="C:/Users/whyka/Desktop/School", pattern = "*.zip", full.names = TRUE)
#unzip all the files
ldply(.data = zipF, .fun =unzip, exdir = getwd())
I was able to extract the files but since they were password protected, the spreadsheets are blank and does not contain anything. *all of the spreadsheets contain the same password. help will be greatly appreciated