我正在开发一个C#应用程序,需要重命名同一文件夹中的一组文件才能添加扩展程序(因此,如果有一个名为myFile
的文件,那么它就是' s文件名更改为myFile.ext
)。我怎样才能在C#中实现这个目标?
答案 0 :(得分:0)
我想找到办法。但对于那些需要帮助的人:
foreach (var srcPath in Directory.GetFiles(tmppath))
{
//To customize for yourself:
//replace "tmppath" with what ever you want
File.Move(srcPath, srcPath+".jpg");
}