Tagged Questions
244
votes
20answers
62k views
Best way to parse command line arguments in C#?
When building console applications that take parameters, you can use the arguments passed to Main(string[] args).
In the past I've simply indexed/looped that array and done a few regular expressions ...
14
votes
4answers
779 views
Escape command line arguments in c#
Short version:
Is it enough to wrap the argument in quotes and escape \ and " ?
Code version
I want to pass the command line arguments string[] args to another process using ProcessInfo.Arguments.
...
6
votes
1answer
797 views
How to parse command line output from c#?
I want to execute an application(command line application) from the C#... and I want after executing this application and providing the input to it, I want to parse the output that will result it. ...
5
votes
3answers
1k views
How can I pass more than one command line argument via c#
I need to pass more than one command line argument via c# for a process called handle.exe:
http://www.google.com.mt/search?sourceid=chrome&ie=UTF-8&q=handle.exe
First, I need to run the ...
4
votes
1answer
240 views
Safely escaping arguments on the command line in C#
I'd like to pass some user supplied arguments to an application (using C# on Windows).
The arguments are in a NameValueCollection and I wish to pass them as a string so that the application can be ...
4
votes
2answers
1k views
How to escape spaces containing path
To pass a path with spaces to .NET console application you should escape it. Probably not escape but surround with double quotes:
myapp.exe --path C:\Program Files\MyApp becomes new string[] { ...
4
votes
7answers
176 views
How to receive an argument in console program?
So I want other users to be able to run my programm sending arguments. how to do such thing?
4
votes
4answers
224 views
Cleaning up control flow when dealing wtih command line arguments [C#]
I'm dealing with a program that does plenty of if...else branching based on command line arguments. This is in C# but I'm sure it's applicable to Java, C++ etc. Here's the general outline:
if ...
4
votes
3answers
411 views
Why won't my console app work with 25 arguments or more?
I am making a console application where I drop files onto the .exe from Explorer and it will move them to the appropriate folder based on rules I have set in the logic of the program.
The program ...
3
votes
3answers
93 views
How to create a Windows Forms program that can also run at the command prompt
I've created a program that has two projects: a windows UI and an "engine". I would like to make it so that the user can execute the program from a command prompt passing in some arguments and the ...
2
votes
0answers
60 views
Looking for a good way to parse command-line arguments in C# for an app that is similar to tf.exe (VS2010) in cli language complexity
The tf.exe is the CLI interface to the Team Foundation Server.
In my case the complexity and structure of the permutations of the command-line switches is similar. There are about two dozen of ...
2
votes
4answers
160 views
How do I handle Command Line Arguments in Winforms if I don't want to load Main form?
I want to create an app that behaves as follows:
On no argument it displays the main form
On argument "a" does a job but the main form isn't loaded.
On argument "b" the form loads using the argument ...
2
votes
3answers
108 views
How can I clear the CommandLineArgs of an application from code?
We have a 3rd party login dialog which will skip the login prompt if the login data is passed in via command line arguments. This is used when an application is launched from within the main 3rd party ...
2
votes
1answer
144 views
Passing command line arguments to mono-service
Is there a way to pass command line arguments to a service invoked by mono-service? All of the command line arguments seem to be absorbed by mono-service instead of passed to the service.
2
votes
1answer
108 views
Invoke default command line parsing method from any application
I am passing in a complex string as an argument to my Console application. I noticed that the resultant string[] args array in my Main method is what I want that string to be parsed as.
Now, I want ...
2
votes
2answers
351 views
Drag Files To Desktop Shortcut - Not Opening Files in Application
I've got a small log viewer app to read some custom logs. I can drag files directly onto the executable, and they are loaded through the command line just fine.
However, if I were to drag the files ...
2
votes
2answers
304 views
Run a c# Console App from a .BAT
I've created a console app (using Visual Studio 2010) which can read command arguments.
When I debug, I parse some test parameters which are set in Project-> [project name] Properties... -> Debug -> ...
2
votes
3answers
393 views
c# - WPF command-line arguement for opening file gives infinite loop
This is a weird one! I am working on an application that reads vCard files, which contain contact etc. information for a person. Each file may contain seperate 'sections' that each contain the details ...
2
votes
3answers
318 views
Launch Program with Parameters
How do I write a very simple program that uses the command line to navigate to a program in the user's Program Files directory, then launches the .exe with a parameter? For example:
...
2
votes
1answer
174 views
What processing/validation is performed on command line arguments before a process starts?
I've a small WPF application that accepts file paths as command line arguments.
If a user drags in too many files with long paths, it will exceed the maximum command line length, at least on 32-bit ...
2
votes
4answers
352 views
How do I parse command line arguments included in double brackets?
It is easy to split a line of arguments using:
// get arguments for myProg.exe /n /b /c
string.Split(' ');
What about the following list:
// get arguments for myProg.exe /n /b /c:"MyProg 4.0"
...
2
votes
1answer
489 views
NDesk.Options: how to register required parameters correctly?
I am trying to utilize the OptionSet class in the following way:
string resultsFileName = null;
bool isHelp = false;
var p = new OptionSet() {
{ "r=|resultsFile=", "The file with the ...
1
vote
2answers
30 views
setting command line quoted params
I need to launch command prompt from my application and set arguments for it.
System.Diagnostics.Process.Start("CMD.exe", "\"C:\Program Files\My Program\program.exe\" \"C:\Program Files\My ...
1
vote
4answers
70 views
How to use “<” (input redirection) with ProcessStartInfo in C#?
I have the following:
C:\temp\dowork.exe < input.txt
processing.......
complete
C:\
I try this:
processArguments = " < input.txt";
pathToExe = "C:\\temp\dowork.exe";
startInfo = new ...
1
vote
1answer
154 views
How to pass command line argument in .net windows application
i want to pass a argument in c#.net to a console application i tried ProcessStartInfo
but that can be used for immediate run of an application ... but i want to set the arguments for the application ...
1
vote
1answer
63 views
Do not remove characters from path name C#
I have a Windows Form Application that takes a command line argument as well. You can run the program by itself it has a GUI but when you run it in CLI it seems like C# removes some characters from my ...
1
vote
5answers
120 views
How to hide output (not the window) in a console application?
Well, let me make it clear again. I have a console application with many classes, in each class there is at least one Console.WriteLine("text") line. I defined some arguments that when running the ...
1
vote
1answer
108 views
Executing a command in the command prompt using c# for a wpf application
I'm currently building a WPF application. I want to be able to choose a binary file, decode it using the command prompt command line arguments into a .csv file, edit its value in my application then ...
1
vote
4answers
322 views
Running C# clickonce console app
I have a Command line console app that references a dll 'VMware.Vim.dll', but this has other referenced dll's like VimService41.dll, VimService20.dll etc saved off in the GAC on my local machine.
I ...
1
vote
3answers
160 views
How can I get args of Form program?
How can I get args of Form program? In console application I can use args[] but what about Form Application?
1
vote
1answer
163 views
C# using redirection operators in visual studio
I am converting a C program to C# and using MS Visual Studio 2005. In C program the arguments are passed as
CProg.exe DataFile < ParameterFile > OutPutFile
When I use above parameters in my ...
1
vote
3answers
256 views
how to parse main arguments?
How can I find this information :
think we started this process :
testFile.exe i- 100 k- "hello" j-"C:\" "D:\Images" f- "true"
Now how can I get main argument when application started so I have :
...
1
vote
1answer
163 views
Specify environmental variables as commandline parameter in a debug session of VisualStudio C#
I want to use an environment variable as a commandline parameter in a debug session.
So Project Properties->Debug->Command line arguments: %TEMP% gives me not the temp path as a parameter rather than ...
1
vote
1answer
207 views
viewing c# console app arguments
I have a console app (written in c#) that is passed various arguments from the command line by an external application (an InstallShield exe). Without adding code into the console app or ...
0
votes
1answer
40 views
WPF Command Line Arguments, a smart way?
I'm looking for a way that I can parse command line arguments into my WPF application with just a way of reading the value of the argument that the user passed.
As an example
application.exe ...
0
votes
6answers
47 views
commandline argument parameter limitation
Language: C#
I have to pass a huge string array (built dynamically) as an argument to run an exe.
I am thinking of acheiving it by the below 2 ways. But I am not feeling confident.
I can create it ...
0
votes
3answers
95 views
Command line with parameters
i have this code:
string filePath = ConfigurationManager.AppSettings.Get("FILE_SAVE_PATH") + fileName;
string newFilePath = ConfigurationManager.AppSettings.Get("FILE_SAVE_PATH") + ...
0
votes
3answers
60 views
If no Command-Line Arguments specified, use the directory of the command line
In c# console application, I intend to get the appropriate directory. For example, let's assume that I have the following code:
class Program
{
static void Main(string[] args)
{
...
0
votes
1answer
68 views
C# Environment.GetCommandLineArgs() from context menu
I posted another question earlier about getting the arguments from a context menu App. If you select an item it gives you the string path to that item, but it starts a new instance of the app for ...
0
votes
1answer
74 views
Access commandline arguments to WPF application in separate appdomain
Is there a clean way to access the commandline arguments passed as part of an AppDomain.ExecuteAssembly call that starts a WPF application?
I'm spinning up a WPF application in a separate app domain ...
0
votes
3answers
75 views
Make VS2010 prompt me for command line arguments
Much like this question is there a way to make Visual Studio 2010 prompt me for command line arguments every time before launching? For one of my projects this would be nice since the arguments need ...
0
votes
4answers
89 views
c# console apps passing arguments
I got this far:
ProcessStartInfo procInfo = new ProcessStartInfo(@"C:\a\a.exe");
procInfo.CreateNoWindow = true;
procInfo.Arguments = "01";
procInfo.Arguments = user_number;
procInfo.Arguments = ...
0
votes
2answers
100 views
Why does the Main have to be static to be able to accept command line arguments?
Do I have to have 2 different Main methods, 1 without any arguments and 1 with string[] args but private and static?
0
votes
5answers
223 views
How to easily run shell commands using c#?
how do i use c# to run command prompt commands?
Lets say i want to run these commands in a sequence:
cd F:/File/File2/...FileX/
ipconfig
ping google.com
or something like that...Can someone make ...
0
votes
1answer
139 views
word command-line-arguments space problem
i want to pass parameters to winword to read it in my vsto addin by using Environment.GetCommandLineArgs()
if a parameter-value contains a space im not able to escape the strings.
this is working:
...
0
votes
4answers
139 views
Commandline Arguments in C#
Hello again Stackoverflow community,
Today I am trying to execute an application with commandline parameters in C#, that not realy difficult like I tried
Process.Start(foldervar + "cocacola.exe", ...
0
votes
2answers
38 views
How to error check for more than a certain amount of Command Parameters
I'm not quite sure how to google search this or put it into one sentence but here is my scenario.
I am creating a simple program in C# that one feature of it is to take command parameters and to get ...
0
votes
1answer
387 views
Best practice to handle command line arguments in C# [closed]
Possible Duplicate:
Best way to parse command line arguments in C#?
What's the best practice for handling command line arguments?
That is, I want my console application (VC#2008) to be ...
0
votes
1answer
367 views
Passing command line parameters with VS 2010 C#
Where do I enter command line arguments in Visual Studio 2010 so that they will be passed to the application I am developing?
I don't have the command line property under the debug folder of ...
0
votes
3answers
193 views
.Net Command Line args problems
I have a .net / c# command line application that takes a couple parameters in the format like:
some.exe -p1:value -p2:someothervalue
etc
A complete sample call looks like this:
JobWorker.exe ...