码迷,mamicode.com
首页 > Windows程序 > 详细

C#初学者使用file.creat()创建文件后,显示正由另一进程使用

时间:2018-03-08 12:19:38      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:rect   c#   new   创建文件   tor   creat   ==   span   user   

从一个目录选择一个文件,复制到另一个目录

 1 string sourcePhotoPath = this.GetUserSelectedPhoto();
 2             if(sourcePhotoPath == null)
 3             {
 4                 return;
 5             }
 6             string sourceFileName = System.IO.Path.GetFileName(sourcePhotoPath);
 7             //把图片保存到文件夹
 8             string userName = this.LoginUserName;
 9             string newPath = @"Images";
10             if(!System.IO.Directory.Exists(newPath))
11             {
12                 System.IO.Directory.CreateDirectory(newPath);
13             }
14             string destFile = userName + DateTime.Now.ToString("yyyyMMddHHMMss") + "_" + sourceFileName;
15             string destImgPath = System.IO.Path.Combine(newPath, destFile);
16             if(!File.Exists(destImgPath))
17             {
18                 var myFile = File.Create(destImgPath);
19                 myFile.Close();
20             }
21             FileInfo f1 = new FileInfo(sourcePhotoPath);
22             f1.CopyTo(destImgPath,true);

 

C#初学者使用file.creat()创建文件后,显示正由另一进程使用

标签:rect   c#   new   创建文件   tor   creat   ==   span   user   

原文地址:https://www.cnblogs.com/dotnetHui/p/8527152.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!