UnZipping Archives that Contain Files without File Extensions
Keywords: file extensions
Question:
I am having a small problem with the zipper. I am trying to unzip the attached zip file that contains 4 files, but the zipper is only unzipping 2 of the files.Here is the code I am using. Have you run across this before?
DF2="P8370507.ZIP" xunzipper=zUnZipFiles("o", df2, "*.*", "","c:\zipdir\")Answer:
To unzip all files, including those that do not have file extensions, you need to specify "*" as the file mask, e.g.,DF2="P8370507.ZIP" xunzipper=zUnZipFiles("o", df2, "*", "","c:\zipdir\")
Article ID: W14135Filename: Unzipping Files without File Extensions.txt