65.9K
CodeProject is changing. Read more.
Home

Ensure extension of file name is of your choice

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.50/5 (4 votes)

Mar 24, 2010

CPOL
viewsIcon

7442

There are cases where we want to ensure that the filename entered by the user has a valid extension of your choice, say .XLS, .ZIP. Sometimes user may not enter extension, or may enter wrong extension like .XLA, .ZIL. In such cases, here is a simple tip where we need not check how user enters...

There are cases where we want to ensure that the filename entered by the user has a valid extension of your choice, say .XLS, .ZIP. Sometimes user may not enter extension, or may enter wrong extension like .XLA, .ZIL. In such cases, here is a simple tip where we need not check how user enters the file name.
string orgFileName1 = @"d:\test\abc.xla";
string orgFileName2 = @"d:\test\abc";

string newFileName1 = System.IO.Path.ChangeExtension(orgFilename1, "xls");
string newFileName2 = System.IO.Path.ChangeExtension(orgFilename2, "xls");

//both newFileName1 and newFileName2 will hold d:\test\abc.xls
Console.WriteLine(newFileName1);
Console.WriteLine(newFileName2);