
使用 File.Copy 方法复制现有文件。
添加要复制的文件的路径。
String myPath = @"D:one.txt";
现在将上述文件复制到以下文件中 −
String myPath = @"D:one.txt";
使用 File.Copy 方法,同时指定源文件和目标文件。
File.Copy(myPath,newpath);
示例
using System;using System.IO;public class Program { public static void Main() { String myPath = @"D:one.txt"; // the file will get copied here String newpath = @"D:two.txt"; // copying file File.Copy(myPath,newpath); }}
以上就是C# 程序复制现有文件的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1435232.html
微信扫一扫
支付宝扫一扫