There was an error while loading. Please reload this page.
char* current_directory();
Returns the directory from which the script was called
struct directory* read_directory(char* dir);
For reading the files in directory dir.
dir
directory
delete_directory
void delete_directory(struct directory* dir);
Deletes a directory retrieved via read_directory
read_directory
struct directory { int count; char** files; };