RosettaCodeData/Task/Delete-a-file/FreeBASIC/delete-a-file.basic
2023-07-01 13:44:08 -04:00

15 lines
319 B
Text

' FB 1.05.0 Win64
' delete file and empty sub-directory in current directory
Kill "input.txt"
RmDir "docs"
' delete file and empty sub-directory in root directory c:\
' deleting file in root requires administrative privileges in Windows 10
'Kill "c:\input.txt"
'RmDir "c:\docs"
Print "Press any key to quit"
Sleep