Pixel-Composer/scripts/shell_helper/shell_helper.gml

5 lines
182 B
Text
Raw Normal View History

2022-12-16 09:18:09 +01:00
function shellOpenExplorer(path) {
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
2023-04-07 21:25:27 +02:00
path = string_replace_all(path, "/", "\\");
2023-02-14 05:32:32 +01:00
execute_shell(_windir, path);
2022-12-16 09:18:09 +01:00
}