Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
15
Task/Delete-a-file/FreeBASIC/delete-a-file.freebasic
Normal file
15
Task/Delete-a-file/FreeBASIC/delete-a-file.freebasic
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
' 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue