I am trying to "parse" command line-arguments for when I start my program from a file in Explorer.

The problems seems to be that the Environment.GetCommandLineArgs() method cuts arguments at whitespaces. This means I cannot open files witch contains whitespaces in its filename.

Any ideas on how I can fix this?

有帮助吗?

解决方案

Add quotes around files with whitespace "C:\Some Directory\SomeFile.txt"

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top