writeFile Command
Purpose:
Write a a string array to a file..
Syntax:
writefile(array,filename)
Comments:
If the file aready exists, it is rewritten.
Example:
filename = "test.dat"
if fileExists(filename) = 0 then
writefile(sss,filename") // write file if it does not exist
endif