作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 C# 开发 WinForm 应用程序。我正在使用按钮浏览图像文件(.jpeg 或 .bmp)。当用户浏览文件并单击确定时,单击另一个“继续或更新”按钮,我希望浏览的文件应该重命名并保存到默认情况下所有图像文件都将保存的预定义目录,没有太多用户互动!
我怎样才能做到这一点?我已使用 openFileDialog 浏览文件,但不知道还能做什么。
最佳答案
//detination filename
string newFileName = @"C:\NewImages\NewFileName.jpg";
// if the user presses OK instead of Cancel
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
//get the selected filename
string filename = openFileDialog1.FileName;
//copy the file to the new filename location and overwrite if it already exists
//(set last parameter to false if you don't want to overwrite)
System.IO.File.Copy(filename, newFileName, true);
}
More information在 Copy 方法上。
关于c# - 使用 C# 将浏览的文件保存到预定义的文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12893934/
我是一名优秀的程序员,十分优秀!