62,243
社区成员




try
{
if (Directory.Exists(xxx))
{
Label1.Text = "该文件存在!";
}
else
{
Label1.Text = "该文件不存在!";
}
}
catch (Exception error)
{
Label1.Text = "失败,原因:" + error.ToString( );
}