problems with lowercase and uppercase characters in filenames

runrev260805 at m-r-d.de runrev260805 at m-r-d.de
Wed Jul 9 06:27:08 EDT 2008


Hi,

i ran into a problem with case sensity writing 2 files ("c:/Test.txt" and "c:/test.txt") under Windows wit Rev Studio 2.9.

Only the first file is created. The content for the second file is written to the first file.

Is Rev not aware of lower/uppercase filenams? 

Tried the following script, which should do it, but it doesn´t


ON mouseUp pMouseBtnNo
    open file "c:/Test.txt" FOR write
    write "text for the uppercase file" to file "c:/Test.txt"
    close file "c:/Test.txt"
    
    open file "c:/test.txt" FOR write
-- this command reopens the file "c:/TEST.txt" instead of creating a new one with the lowercase filename
    write "text for the lowercase file" to file "c:/test.txt"
    close file "c:/test.txt"
End mouseUp

So where is my mistake?


Regards,

Matthias





More information about the use-livecode mailing list