Hi all,
I'm using stata 14 on mac and trying to unzip files using the syntax below:
local dataplace " /"
local zipFiles: dir "`dataplace'" files "*.zip", respectcase

foreach zipFile of local zipFiles {
qui unzipfile "`dataplace'/`zipFile'", replace
}

I have encountered a problem. The message that displays in the window is the following: "I/O error on read, error may be caused by incorrect password" r(601).

Please, can you help me to fix the problem?
Thanks