mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-28 16:06:20 +01:00
55 lines
No EOL
1.5 KiB
Text
55 lines
No EOL
1.5 KiB
Text
function shellOpenExplorer(path) {
|
|
if(OS == os_windows) {
|
|
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
|
|
path = string_replace_all(path, "/", "\\");
|
|
shell_execute_async(_windir, path);
|
|
|
|
} else if(OS == os_macosx) {
|
|
path = string_replace_all(path, "\\", "/");
|
|
var res = shell_execute_async("open", path);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
function shell_execute_output(path, command, ref = noone, _log = true) { return ExecutedProcessReadFromStandardOutput(shell_execute(path, command)); }
|
|
|
|
function shell_execute(path, command, ref = noone, _log = true) {
|
|
INLINE
|
|
|
|
// if(OS == os_macosx) {
|
|
path = string_replace_all(path, "\\", "/");
|
|
command = string_replace_all(command, "\\", "/");
|
|
// }
|
|
|
|
var cmd = $"{path} {command}";
|
|
var res = ProcessExecute(cmd);
|
|
if(_log) print($"Execute {path} {command} | {res}");
|
|
|
|
return res;
|
|
}
|
|
|
|
function shell_execute_async(path, command, ref = noone, _log = true) {
|
|
INLINE
|
|
|
|
if(IS_CMD) return shell_execute(path, command, ref);
|
|
|
|
if(OS == os_macosx) {
|
|
path = string_replace_all(path, "\\", "/");
|
|
command = string_replace_all(command, "\\", "/");
|
|
}
|
|
|
|
var cmd = $"{path} {command}";
|
|
var res = ProcessExecuteAsync(cmd);
|
|
if(_log) print($"Execute async {path} {command} | {res}");
|
|
|
|
return res;
|
|
}
|
|
|
|
function env_user() {
|
|
INLINE
|
|
|
|
if(OS == os_windows) return string(environment_get_variable("userprofile")) + "/AppData/Local/PixelComposer/";
|
|
if(OS == os_macosx) return string(environment_get_variable("HOME")) + "/PixelComposer/";
|
|
return "";
|
|
} |