C# 判断文件夹是否为空

if (Directory.GetDirectories(pbak).Length > 0 || Directory.GetFiles(pbak).Length > 0)
        {
            Response.Write("<script>alert('文件夹不为空!');</script>");
        }

(0)

相关推荐