C#初学者使用file.creat()创建文件后,显示正由另一进程使用
2021-02-10 06:21
标签:rect c# new 创建文件 tor creat == span user 从一个目录选择一个文件,复制到另一个目录 C#初学者使用file.creat()创建文件后,显示正由另一进程使用 标签:rect c# new 创建文件 tor creat == span user 原文地址:https://www.cnblogs.com/dotnetHui/p/8527152.html 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);
上一篇:Multithreading With C# Cookbook---Chapter5---使用C#6.0
下一篇:背水一战 Windows 10 (77) - 控件(控件基类): ContentControl, UserControl, Page
文章标题:C#初学者使用file.creat()创建文件后,显示正由另一进程使用
文章链接:http://soscw.com/index.php/essay/53453.html