> I was wondering how do you manage naming files and directories using
>CJK languages, Arabic, Hebrew, ... if file systems would only take,
>what?, LATIN-1 characters?
Windows and Linux take Unicode, with some magic reserved chars.
My rule. use A-Z a-Z 0-0 _ .
You are pretty safe that will work anywhere.
The problem is going to become more acute with global file sharing, in
much the same way local encodings became a problem with the Internet.
--
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
lbrtchx@gmail.com - 22 Feb 2008 07:58 GMT
On Feb 17, 7:40 am, Roedy Green <see_webs...@mindprod.com.invalid>
wrote:
> My rule. use A-Z a-Z 0-0 _ .
~
even your rule, namely: [A-Z], [a-z], [0-9], "_", "."
~
has its issues in OSs/FSs that do not fully take into account letter
case
~
For Unix FILE.TXT and file.txt are two different files. Windows would
have issues dealing with such files in the same directory
~
lbrtchx