用C#重命名文件如何使用C#重命名文件?
3 回答
慕妹3146593
TA贡献1820条经验 获得超9个赞
/* Delete the file if exists, else no exception thrown. */File.Delete(newFileName); // Delete the existing file if existsFile.Move(oldFileName,newFileName); // Rename the oldFileName into newFileName
- 3 回答
- 0 关注
- 1248 浏览
添加回答
举报
0/150
提交
取消