我的应用程序需要使用TextBox中提供的文件名保存JPEG图像文件。我不想使用SaveFileDialog,因为我不希望用户看到对话框或能够更改已保存图像的位置。
如何从TextBox设置保存文件的名称?
private void button1_Click(object sender, EventArgs e)
{
if (textBox4.Text.Length >= 1)
bitmap.Save(@"C:\Test.jpg");
}
答案 0 :(得分:4)
怎么样:
if(filename.IndexOfAny(Path.GetInvalidFileNameChars()) != -1)
bitmap.Save(textBox4.Text);
else
MessageBox.Show("Error: the file name contains invalid chars");
修改强>
这不起作用。因为它必须将文件保存到C:和文件 必须是jpg图像,就像我的代码一样。我知道如何解决这个问题 SaveFileDialog,但我不希望看到任何保存文件的对话框 用户不得更改我想保存的位置。
if(filename.IndexOfAny(Path.GetInvalidFileNameChars()) != -1)
bitmap.Save(@"C:\" + textBox4.Text + ".jpg");
else
MessageBox.Show("Error: the file name contains invalid chars");
答案 1 :(得分:1)
不要这样做,请使用SaveFileDialog组件。它将处理路径,有效名称,拾取文件等特殊文件夹。
答案 2 :(得分:1)
当使用用户输入的文本时,您应该从字符串中删除任何非法字符,否则在尝试使用该名称创建文件时会出现异常。
private static string RemoveInvalidChars(string s, char[] invalidChars) {
foreach (char ch in invalidChars) {
s = s.Replace(ch.ToString(), "");
}
return s.Trim();
}
使用此辅助方法,您可以像这样保存位图
string path = RemoveInvalidChars(Path.GetDirectoryName(textBox4.Text),
Path.GetInvalidPathChars());
string filename = RemoveInvalidChars(Path.GetFileName(textBox4.Text),
Path.GetInvalidFileNameChars());
if (filename.Length > 0) {
if (path.Length > 0) {
filename = Path.Combine(path, filename);
}
bitmap.Save(filename);
} else {
// not a valid filename
}