2
0

func_file_createfile.rst 419 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .. _func_file_createfile:
  2. ==========
  3. CreateFile
  4. ==========
  5. CreateFile -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. CreateFile( path$ )
  10. Create a file
  11. Parameters
  12. ==========
  13. Return Values
  14. =============
  15. True if successful
  16. Examples
  17. ========
  18. .. code-block:: blitzmax
  19. ' createfile.bmx
  20. success=createfile("myfile")
  21. if not success runtimeerror "error creating file"
  22. See Also
  23. ========