mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-25 22:46:19 +01:00
4 lines
96 B
Text
4 lines
96 B
Text
|
function directory_verify(path) {
|
||
|
if(directory_exists(path)) return;
|
||
|
directory_create(path);
|
||
|
}
|