示例#1
0
    //删除文件
    public static string mDeleteFile(string mPath)
    {
        string res = null;

        if (System.IO.File.Exists(Path.GetFullPath(mPath)))
        {
            File.Delete(Path.GetFullPath(mPath));
            MyDataSource.PrintLogs("删除文件" + mPath);
        }
        else
        {
            MyDataSource.PrintLogs("删除图片:图片文件不存在");
            res = "文件路径不存在";
        }
        return(res);
    }