Hello all,
I am having trouble with filenames that are encoded with the ISO-2022-JP unicode character set.
I have added the environment variables LC_ALL and LANG to my environment and all other recommendations in the UNICODE.TXT file. I have verified that Anomy recognizes them using this piece of code inside of the SanitizeFile subroutine:
open (ANOMYOUT,">/var/ronnie.$$") or die "Can't open file\n";
foreach my $envkey (sort (keys %ENV)) {
print ANOMYOUT $envkey . "$ENV{$envkey}";
}
close (ANOMYOUT);
After the file comes out of anomy it has been renamed to:
^[$B#G#M;n83<j=g=qO;2A%/%m%a!<%H^[(B.xls
If I set "feat_files = 0" the problem can be avoided, however I do not want to turn of file sanitization.
Any thoughts?
Thanks,