Arbortext IsoDraw > Macro Language Reference > 3D and User Interaction Commands > Further Macro Commands > FWrite
  
FWrite
The FWRITE command writes a string with a new line character to the end of a text file. If the file doesn’t exist it will be created.
FWRITE"path""message"
message
Text of message.
path
Path where message is written.
DEFINE txtOut AS string
txtOut = "D:\work\output.txt"
FWRITE txtOut "Results:"