2016 Update

This commit is contained in:
Tina Müller 2016-12-05 22:15:40 +01:00
parent 948b86eafa
commit dcf5d15da3
7965 changed files with 139854 additions and 31002 deletions

View file

@ -1 +1,5 @@
In this task, the job is to delete a file called "input.txt" and delete a directory called "docs". This should be done twice: once "here", i.e. in the current working directory and once in the filesystem root.
;Task:
Delete a file called "input.txt" and delete a directory called "docs".
This should be done twice: once "here", i.e. in the current working directory and once in the filesystem root.
<br><br>

View file

@ -0,0 +1 @@
ERASE "a:INPUTTXT"

View file

@ -0,0 +1,13 @@
#import system.
#import system'io.
#symbol program =
[
"output.txt" file_path delete.
"\output.txt" file_path delete.
"docs" directory_path delete.
"\docs" directory_path delete.
].

View file

@ -1,4 +1,4 @@
OPEN (UNIT=5, FILE="input.txt", STATUS="OLD") ! Current directory
CLOSE (UNIT=5, STATUS="DELETE")
OPEN (UNIT=5, FILE="/input.txt", STATUS="OLD") ! Root directory
CLOSE (UNIT=5, STATUS="DELETE")
OPEN (UNIT=5, FILE="input.txt", STATUS="OLD") ! Current directory
CLOSE (UNIT=5, STATUS="DELETE")
OPEN (UNIT=5, FILE="/input.txt", STATUS="OLD") ! Root directory
CLOSE (UNIT=5, STATUS="DELETE")

View file

@ -0,0 +1,2 @@
const fs = require('fs');
fs.unlinkSync('myfile.txt');

View file

@ -0,0 +1,4 @@
const fs = require('fs');
fs.unlink('myfile.txt', ()=>{
console.log("Done!");
})

View file

@ -1,10 +1,10 @@
/*REXX pgm deletes a file & a folder in the current directory & the root*/
trace off /*suppress REXX error messages. */
aFile= 'input.txt' /*name of a file to be deleted.*/
aDir = 'docs' /*name of a folder to be removed.*/
do j=1 for 2 /*perform this DO loop twice. */
'ERASE' aFile /*erase this file in the cur dir*/
'RMDIR' "/s /q" aDir /*remove the folder " " " " */
if j==1 then 'CD \' /*make current dir the root dir.*/
end /* [↑] just do CD \ once.*/
/*stick a fork in it, we're done.*/
/*REXX program deletes a file and a folder in the current directory and the root. */
trace off /*suppress REXX error messages from DOS*/
aFile= 'input.txt' /*name of a file to be deleted. */
aDir = 'docs' /*name of a folder to be removed. */
do j=1 for 2 /*perform this DO loop exactly twice.*/
'ERASE' aFile /*erase this file in the current dir. */
'RMDIR' "/s /q" aDir /*remove the folder " " " " */
if j==1 then 'CD \' /*make the current dir the root dir.*/
end /* [↑] just do CD \ command once.*/
/*stick a fork in it, we're all done. */