• 大小: 3KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-10
  • 语言: 其他
  • 标签: fixdump  

资源简介

fixdump工具,mfocgui类dump文件修复 fixdump,让1k文件补满4k

资源截图

代码片段和文件信息

using System;
using System.IO;

namespace fixdump
{
    class Program
    {
        static void Main(string[] args)
        {
            if (args.Length == 1)
            {
                string strFilePath = args[0];
                if (File.Exists(strFilePath))
                {
                    FileStream fsA = new FileStream(strFilePath FileMode.Open);

                    if (fsA.Length != 1024)
                    {
                        Console.WriteLine(“文件不匹配“);
                    }
                    else
                    {
                        byte[] byteArray = new byte[3072];
                        fsA.Seek(1024 SeekOrigin.Current);
                        fsA.Write(byteArray 0 byteArray.Length);
                        fsA.Close();
                        Console.WriteLine(“修复OK:  “ + strFilePath);
                    }
                }
                else
                {
                    Console.WriteLine(“无法找到文件:   “ + strFilePath);
                }
            }
            else
            {
                Console.WriteLine(“---修复mfocGUI V29转储文件大小1k为4k---“);
                Console.WriteLine(“eg: fixdump.exe c:\\1k.dump“);
            }

        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        5120  2011-10-13 11:27  fixdump.exe
     目录           0  2011-10-13 11:29  src\
     文件        1311  2011-10-13 11:27  src\Program.cs

评论

共有 条评论

相关资源