Changing the filename for download
I have this file path....
filepath = "C:\\Inetpub\\sample\\download\\mp3\\0000175_01_04 .mp3";
and the following line will get the file name '0000175_01_04.mp3'
string filename = System.IO.Path.GetFileName(filepath);
But i like to change this file name '0000175_01_04.mp3' into 'Jazz1.mp3'
How would i do it? Please help...
Thanks a lot
|