2
0

func_file_deletefile.rst 419 B

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