We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to museumsvictoria/nodel-recipes#78
As described in museumsvictoria/nodel-recipes#77 (comment), the process sandbox strips quotes which are passed along from the App Launcher (and other nodes).
So "C:\content\hello world.mp4" would be treated as two seperate arguments, C:\content\hello and world.mp4
"C:\content\hello world.mp4"
C:\content\hello
world.mp4
As suggested in that linked PR; making use of Environment.CommandLine instead of the class static void Main method, should resolve this issue.
static void Main
The text was updated successfully, but these errors were encountered:
scroix
No branches or pull requests
As described in museumsvictoria/nodel-recipes#77 (comment), the process sandbox strips quotes which are passed along from the App Launcher (and other nodes).
So
"C:\content\hello world.mp4"
would be treated as two seperate arguments,C:\content\hello
andworld.mp4
As suggested in that linked PR; making use of Environment.CommandLine instead of the class
static void Main
method, should resolve this issue.The text was updated successfully, but these errors were encountered: