C#查询文件或者文件夹是否存在
2020-07-28 本文已影响0人
堆石成山
if (!File.Exists(Path))
{
MessageBox.Show("文件不存在"", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
if (!File.Exists(Path))
{
MessageBox.Show("文件不存在"", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}