我是编程新手,我正在尝试上传图片并将其保存在具有当前产品ID的文件夹中。但是,当我更新映像时,将创建一个新文件夹。如何检查选中的Griedview行,并检查ID是否不为null,然后替换图片,如果为null,则为上载?
我知道获取max(id)并将其设置为文件夹名称的想法不是一个好习惯,但是我希望图像以id分隔。这里是代码。
private void upload_Click_1(object sender, EventArgs e)
{
OpenFileDialog opFile = new OpenFileDialog();
opFile.Title = "Select image for this product";
opFile.Filter = "jpg files (*.jpg)|*.jpg|All files (*.*)|*.*";
if (opFile.ShowDialog() == DialogResult.OK)
{
try
{
string iName = opFile.FileName;
var dir = @"images/" + GetCurrentId();
var path = Path.Combine(dir, Path.GetFileName(iName));
if (!Directory.Exists(dir) &&(produto)this.tbprodutoBindingSource.Current == null))
{
Directory.CreateDirectory(dir);
}
File.Copy(iName, path);
}
catch (Exception ex)
{
MessageBox.Show("Unable to open file " + ex.Message);
}
}
else
{
opFile.Dispose();
}
}
private int GetCurrentId()
{
var result = dataContextFactory.DataContext.produtos.Max(x => x.id_produto);
int maxId = Convert.ToInt32(result);
if (maxId == 0) maxId = 1;
else
maxId++;
return maxId;
}