How to check whether a folder named RM exists inside a directory...I have given the directory path through textbox like txtBoxInput.Text and in thi
RM
txtBoxInput.Text
Path.Combine and Directory.Exists ?
http://msdn.microsoft.com/en-us/library/system.io.path.combine.aspx
http://msdn.microsoft.com/en-us/library/system.io.directory.exists.aspx
if (Directory.Exists(Path.Combine(txtBoxInput.Text, "RM")) { // Do Stuff }