111,126
社区成员
发帖
与我相关
我的任务
分享
//删除文件夹
if (bllFiles.Delete(Convert.ToInt32(splitID[j])))
{
//获取文件夹位置
oldFullFile = Server.MapPath(string.Format("../../../Upload/NetworkHardDisk{0}/{1}/", hiddCurrParent.Value, filenames[j]));
if (Directory.Exists(oldFullFile))
Directory.Delete(oldFullFile);
}