Pixel-Composer/scripts/shell_helper/shell_helper.gml
2023-04-07 21:25:27 +02:00

5 lines
182 B
Plaintext

function shellOpenExplorer(path) {
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
path = string_replace_all(path, "/", "\\");
execute_shell(_windir, path);
}