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 a directory from a certain command parameter and an output in another command parameter. I have 2 parameters that the first one is InputPath and the 2nd is Output path. Pretty basic.

I'm doing error checking to see if the directorys they placed are valid using

if(Directory.Exists(args[0])&Directory.Exists(args[1]))
{
    GenManifest(args[0], args[1]);
}

My question is how can I make it so if they place more than 2 command parameters that I can place an error like follows

MessageBox.Show("Please only insert 2 arguements","Error");

I also have a simple

else
{
    MessageBox.Show("Invalid arguement format","Error");
}

to cover the majority of all other errors.

I'm also thinking of other ways to error check my code but for now i want the directories to be valid and to have the proper amount of arguements.

Thank you!

Daniel Sterba

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

Just check the length of the args array:

if (args.Length != 2)
{
    // Display error
}
link|improve this answer
hah.. im surprised that didnt cross my mind.. thank you – KTDanny Jul 13 '11 at 19:20
feedback
if (args.Length != 2)
{
    MessageBox.Show("Please only insert 2 arguements","Error");
}

Also you should change & to && so:

if (Directory.Exists(args[0]) && Directory.Exists(args[1]))
{
    GenManifest(args[0], args[1]);
}

Here if the first condition returns false the second condition will be ignored.

link|improve this answer
&& is the correct format when ensuring that code requires two boolean results to be true. – EtherDragon Jul 13 '11 at 19:11
Yes that is true. but note that & in C# can be used here but the whole conditions will be evaluated even if the first one returns true for more info about & check msdn. – Jalal Aldeen Saa'd Jul 13 '11 at 19:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.