.html--------->.chm
你要的逆向 .chm -> .html

解决方案 »

  1.   

    var
      sr: TSearchRec;
      FileAttrs,taglength: Integer;
    begin 
       combobox1.Items.Clear;
       FileAttrs:=faArchive; 
       if findfirst('C:\',faAnyFile,sr)=0 then
       begin
          if (sr.Attr and FileAttrs) = sr.Attr then
             combobox1.Items.Add(copy(sr.name,1,length(sr.name));
          while FindNext(sr) = 0 do
             if (sr.Attr and FileAttrs) = sr.Attr then
                combobox1.Items.Add(copy(sr.name,1,length(sr.name)));
          sysutils.FindClose(sr);
       end;
      

  2.   

    错了:
    var
      sr: TSearchRec;
      FileAttrs,taglength: Integer;
    begin 
      combobox1.Items.Clear;
      FileAttrs:=faArchive; 
      if findfirst('C:\*.chm',faAnyFile,sr)=0 then
      begin
          if (sr.Attr and FileAttrs) = sr.Attr then
            combobox1.Items.Add(copy(sr.name,1,length(sr.name));
          while FindNext(sr) = 0 do
            if (sr.Attr and FileAttrs) = sr.Attr then
                combobox1.Items.Add(copy(sr.name,1,length(sr.name)));
          sysutils.FindClose(sr);
      end; 
      

  3.   

    人家可能要的.chm中原html的文件列表;
    *.htm--->一个.chm
    一个.chm  --->-->   *.htm,*jpg,....这个列表 
      

  4.   

    应该是不可能的,HTML文件编译成CHM之后,可能没有保存原来的HTML文件信息.
    不过好像有CHM-->HTML的工具.
      

  5.   

    这个最好用:
    耶書制造 CHMmaker
    编辑/编译CHM文件、反编译CHM/HLP文件到源文件、HLP帮助工程转换为HHP帮助工程。
    http://elsesoft.home.sohu.com
    http://else.go.163.com