Runprogram with Space Char in FilePath
Hello everyone, currently I'm struggeling with executing a runprogram command with a filepath containing a space char: myPath = "C:\Users\FilePath\Test.py"
myInfo = runprogram(executable("python"), options({myPath}),readfunction("text")); This works perfetly, but when the filepath contains a space - the path is cut off, thus the file cannot be found: myPath = "C:\Users\File Path\Test.py"
myInfo = ...