I'm attempting to create a file with two dots in the filename, and the resulting filename is corrupted.
This isn't a serious problem, but should perhaps be documented. Is it using 8.3 file naming (MS DOS) ?
John F.
program output:
File create/write test
Opening /local/file1 for writing
Closing /local/file1
Opening /local/file2.txt for writing
Closing /local/file2.txt
Opening /local/file.3.txt for writing
Closing /local/file.3.txt
files created:
-rw-rw-rw- 1 John root 17 Jan 1 2008 FILE.3XT
-rw-rw-rw- 1 John root 17 Jan 1 2008 FILE1
-rw-rw-rw- 1 John root 17 Jan 1 2008 FILE2.TXT
All filenames are converted to upper case, only the first 3 alphanum chars after the first dot are used as
extension.
I'm attempting to create a file with two dots in the filename, and the resulting filename is corrupted.
This isn't a serious problem, but should perhaps be documented. Is it using 8.3 file naming (MS DOS) ?
John F.
All filenames are converted to upper case, only the first 3 alphanum chars after the first dot are used as
extension.