Sorting it all Out Michael Kaplan's random stuff of dubious value Be sure to read the disclaimer here first!
Let's create the following filenames:
(they can be empty or have data in them)
And then try to zip them up with your favorite program (I'll use WinZip, you can use anything you like here).
The zip will fail, in the case of WinZip with the following error:
---------------------------WinZip---------------------------Error: No files were found for this action that match your criteria - nothing to do. (C:\TEMP\TEMP.zip).---------------------------OK Help ---------------------------
And then if you choose to look at the error log you will see why you had zero files instead of the four you asked it zip up:
Action: Add (and replace) files Include subfolders: yes Save full path: noInclude system and hidden files: yes"C:\TEMP\aß?de???.txt" is not a valid file name and was skipped"C:\TEMP\????????.txt" is not a valid file name and was skipped"C:\TEMP\????????.txt" is not a valid file name and was skippedWarning: name not matched: C:\TEMP\????????.txt"C:\TEMP\aß?de???.txt" is not a valid file name and was skipped"C:\TEMP\????????.txt" is not a valid file name and was skipped"C:\TEMP\????????.txt" is not a valid file name and was skippedWarning: name not matched: C:\TEMP\????????.txt"C:\TEMP\???????.txt" is not a valid file name and was skippedWarning: name not matched: C:\TEMP\???????.txt"C:\TEMP\aß?de???.txt" is not a valid file name and was skippedWarning: name not matched: C:\TEMP\aß?de???.txtError: No files were found for this action that match your criteria - nothing to do. (C:\TEMP\TEMP.zip)
The ZIP format is fine with Unicode data in filenames, but is not so fine with the filenames themselves being off of the default system code page.
Curses, foiled again!
Now one could work around this by using the short file names, but this would have a negative impact on being able to use them in the ZIP file:
I think we need to have someone look into an extension to the ZIP format....
This post brought to you by "Ž" (U+017d, a.k.a. LATIN CAPITAL LETTER Z WITH CARON)(which is unfortunately not a zippable file name character on most code pages)