用C#重命名文件如何使用C#重命名文件?
3 回答
青春有我
TA贡献1784条经验 获得超8个赞
/* 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 关注
- 346 浏览
添加回答
举报
0/150
提交
取消