Language 1.0.2
YOU MUST INSTALL MINGW COMPILER AND PUT MINGW FOLDER INTO THE FOLDER WITH THE EXECUTIVE FILE!
Added work with command line and file system, updated lists and explode function.
explode(symbol separator, text text);
- splits a string into a list of texts, returnslist<text>
.
getPath();
- gets the directory path it is currently in, returnstext
.
listDir();
- gets a list of files and folders from the current directory, returnslist<text>
.
deleteFile(text filename);
- deletes a file.
deleteFolder(text foldername);
- deletes a directory (only if it's empty).
createFolder(text foldername);
- creates a folder.
changeDir(text foldername);
- move to another directory.
cmdCommand(text command);
- execute command line command.