Arbortext IsoDraw > Macro Language Reference > 3D and User Interaction Commands > Further Macro Commands > FNew
  
FNew
The FNEW command creates a new text file with the name a location specified. If the file already exists it will be overwritten.
FNEW"path"8_BIT
path
File path.
8_BIT
Optional parameter defines that the file will be created as a 8-Bit ASCII text file. By default the file is created as a UNICODE text file.
DEFINE txtOut AS string
txtout = "C:\Temp\test.txt"
FNEW txtout
FWRITE txtout "Hello World!"