EFFECTS

Copy a file or directory

It also allows you to specify a parameter for overwriting if the file already exists

copy %path% to %path% [with (replac|overwrit)(e|ing)]
copy file "plugins/Skcrew.jar" to file "./"

Create a simple file

It also allows you to specify the text content of the file being created

create %paths% [with [(text|string|content)] %strings%]
create file "eula.txt" with content "eula=true"

Delete a file or directory

delete %paths%
delete file "plugins/Skcrew.jar"

Move a file or directory

It also allows you to specify a parameter for overwriting if the file already exists

move %paths% to %path% [with (overwrit|replac)(e|ing)]
move file "plugins" to file "disabled_plugins"

Rename a file or directory

It also allows you to specify a parameter for overwriting if the file already exists

rename %paths% to %string% [with (overwrit|replac)(e|ing)]
rename file "plugins/Skript/scripts/mycoolscript.sk" to "-mycoolscript.sk"

Unpack the zip archive

It also allows you to specify a parameter for overwriting if the file already exists

unzip %path% to %path% [with (overwrit|replac)(e|ing)]
unzip file "myarchive.zip" to file "./"

Create a zip archive

It also allows you to specify a parameter for overwriting if the file already exists

zip %paths% to %path% [with (overwrit|replac)(e|ing)]
zip file "world/" to file "backupworld.zip"