1、c#
写文件:
读文件:
删除文件:
public static string DeleteFile(string path)
{
if (System.IO.File.Exists(System.Web.HttpContext.Current.Server.MapPath(path)))
{
System.IO.File.Delete(System.Web.HttpContext.Current.Server.MapPath(path));
return "yes";
}
return "no";
}
2、php
写文件:
读文件:
删除文件:
3、asp
写文件:
读文件:
删除文件:
4、java
写文件:
读文件:
删除文件: