hey
i want to write simple text data to a file. the only problem i have is that in the file all the inserted data is put in quotation marks. i used this code:
FileOpen(1, "c:\java\test1.bat", OpenMode.Output)
WriteLine(1, "@echo off")
WriteLine(1, "cd\")
WriteLine(1, "java -cp c:\java waveplay " + javastring)
WiteLine(1, "cd\")
FileClose(1)
The output is this:
"@echo off"
"cd\"
"java -cp c:\java waveplay "
"cd\"
what can i do that the quotation marks will not be stored.
thanx a lot
yogi
i want to write simple text data to a file. the only problem i have is that in the file all the inserted data is put in quotation marks. i used this code:
FileOpen(1, "c:\java\test1.bat", OpenMode.Output)
WriteLine(1, "@echo off")
WriteLine(1, "cd\")
WriteLine(1, "java -cp c:\java waveplay " + javastring)
WiteLine(1, "cd\")
FileClose(1)
The output is this:
"@echo off"
"cd\"
"java -cp c:\java waveplay "
"cd\"
what can i do that the quotation marks will not be stored.
thanx a lot
yogi