Help Center
Help CenterFreeBASIC

Killfunction

Deletes a file from disk / storage media.

Operating System Functionsfunctiondocumented

Syntax

Declare Function Kill ( ByRef filename As Const String ) As Long

Parameters

NameDescription
filenameThe filename is the name of the disk file to delete. If the file is not in the current directory, the path must also be given as path/file.

Return value


Returns zero (0) on success, or non-zero on error.

Description


Kill deletes a file from disk / storage media.

The error code returned by Kill can be checked using Err in the next line. The function version of Kill returns directly the error code as a 32 bit Long.

Remarks

Usage


result = Kill( filename )

Platform Differences


On some platforms, Kill may be able to remove folders and read-only files. Whether it succeeds or fails here is not currently defined. It may be necessary to check the attributes of the file you are deleting, and decide accordingly whether you want to try Killing it.

Differences from QB


  • KILL can optionally be used as function in FreeBASIC.

See also


Example


Dim filename As String = "file.ext"

Dim result As Long = Kill( filename )



If result <> 0 Then Print "error trying to kill " ; filename ; " !"

Reference

  • Documented in KeyPgKill.html