gpt4 book ai didi

c# - 使用 C# 将浏览的文件保存到预定义的文件夹

转载 作者:行者123 更新时间:2023-12-03 19:15:14 27 4
gpt4 key购买 nike

我正在使用 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com