Pixel-Composer/scripts/directory_functions/directory_functions.gml

4 lines
96 B
Plaintext

function directory_verify(path) {
if(directory_exists(path)) return;
directory_create(path);
}