mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 15:06:22 +01:00
5 lines
No EOL
182 B
Text
5 lines
No EOL
182 B
Text
function shellOpenExplorer(path) {
|
|
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
|
|
path = string_replace_all(path, "/", "\\");
|
|
execute_shell(_windir, path);
|
|
} |