' FilePath 删除文件的全路径
System.IO.File.Delete(FilePath)
如果使用相对路径时:
<add key="filePath" value="../outpath/"/>
System.IO.File.Delete(Server.MapPath(FilePath))
' FilePath 删除文件的全路径
System.IO.File.Delete(FilePath)
如果使用相对路径时:
<add key="filePath" value="../outpath/"/>
System.IO.File.Delete(Server.MapPath(FilePath))