EFFECTS

Скопировать файл или директорию

copy %path% to %path% 
copy file "plugins/Skcrew.jar" to file "./"

Создать простой файл

[(async/sync)] create %path% [with content %strings%]
create file "eula.txt" with content "eula=true"

Удалить файл или директорию

[(async/sync)] delete %path%
delete file "plugins/Skcrew.jar"

Переместить файл

[(async/sync)] move %paths% to %path%
move file "plugins" to file "disabled_plugins"

Переименовать файл

[(async/sync)] rename %path% to %string% 
rename file "plugins/Skript/scripts/mycoolscript.sk" to "-mycoolscript.sk"

Распаковать zip архив

[(async/sync)] unzip %path% to %path%
unzip file "myarchive.zip" to file "./"

Запаковать в архив zip

[(async/sync)] zip %path% to %path%
zip file "world/" to file "backupworld.zip"

Скачать файл

[(async/sync)] download file from [url] %string% (and store it in|to) %path%
async download file from "https://crewpvp.xyz/file.rar" and store it in file "dwnldfiles/file.rar"