在F盘中新建文件test.txt,判断F:\test.txt是否存在,如果存在,将其拷贝到E盘;
1 回答
一毛钱
TA贡献156条经验 获得超57个赞
if (System.IO.File.Exists(@"F:\test.txt")) { System.IO.File.Copy(@"F:\test.txt", @"E:\test.txt"); }
- 1 回答
- 0 关注
- 1066 浏览
添加回答
举报
0/150
提交
取消