On Wednesday, February 09, 2005, at 08:47AM, Atkinson, Robert <[EMAIL 
PROTECTED]> wrote:

>I'm using TXT2PDF from Sanface Software. We've converted some of our disks to
>ODS-5, but now find that the files generated from uppercase filenames are
>created in lower case.

Perl follows the legacy CRTL behavior of downcasing filenames.  We plan to 
honor DECC$EFS_CASE_PRESERVE at some point, but there is a fair amount of work 
to be done yet to get that working.  In the meantime, it looks like sysopen 
will create in upper case:

$ perl -e "use Fcntl; sysopen(FH, 'FOO.BAR', O_WRONLY | O_TRUNC | O_CREAT) or 
die $!;"
$ dir foo.bar

Directory D1:[CRAIG]

FOO.BAR;1           

Total of 1 file.

Reply via email to