-1

我在这里发布了同样的问题:

如何打印存档文件中的文件名?

但这些答案不一定能解决问题。我有一个存档文件 week.a,我想打印出该存档中文件的名称,称为 mon.txt 和 fri.txt。

它应该像 ar -t 命令一样工作,除了我不允许使用它。

我尝试过的:我的第一次尝试是创建一个 for 循环并打印出参数,但后来我意识到该文件已经存档,所以这不起作用。我的第二次尝试是查看 ar 的 print_contents 函数,我在下面列出了该函数:

static void
print_contents (bfd *abfd)
{
  size_t ncopied = 0;
  char *cbuf = (char *) xmalloc (BUFSIZE);
  struct stat buf;
  size_t size;
  if (bfd_stat_arch_elt (abfd, &buf) != 0)
    /* xgettext:c-format */
    fatal (_("internal stat error on %s"), bfd_get_filename (abfd));

  if (verbose)
    printf ("\n<%s>\n\n", bfd_get_filename (abfd));

  bfd_seek (abfd, (file_ptr) 0, SEEK_SET);

  size = buf.st_size;
  while (ncopied < size)
    {

      size_t nread;
      size_t tocopy = size - ncopied;
      if (tocopy > BUFSIZE)
    tocopy = BUFSIZE;

      nread = bfd_bread (cbuf, (bfd_size_type) tocopy, abfd);
      if (nread != tocopy)
    /* xgettext:c-format */
    fatal (_("%s is not a valid archive"),
           bfd_get_filename (bfd_my_archive (abfd)));

      /* fwrite in mingw32 may return int instead of size_t. Cast the
     return value to size_t to avoid comparison between signed and
     unsigned values.  */
      if ((size_t) fwrite (cbuf, 1, nread, stdout) != nread)
    fatal ("stdout: %s", strerror (errno));
      ncopied += tocopy;
    }
  free (cbuf);
}

但是通过这条路线,我真的不知道很多代码的含义或作用(我对 C 非常陌生)。有人可以帮助理解这段代码,或者指出我编写程序的正确方向吗?谢谢你。

4

2 回答 2

2

根据wikipedia.org/wiki/Ar_(Unix)上的格式,您的程序的基本形状将是:

fopen(filename)
fscanf 8 characters/* global header */
check header is "!<arch>" followed by LF
while not at end of file  /* check return value of fcanf below  */
    fscanf each item in file header
    print filename /* first 16 characters of file header */
    check magic number is 0x60 0x0A
    skip file size characters  /* file contents - can use fseek with origin = SEEK_CUR */

fclose(file)

有关所需函数的详细信息,请参阅C stdio 库文档。或查看维基百科 C 文件输入/输出

于 2013-10-20T23:51:20.113 回答
1
int counting(FILE *f)
{  

    int count=0;
    rewind(f);

    struct ar_hdr myheader;

    fseek(f,8,SEEK_CUR);

    while(fread(&myheader,sizeof(struct ar_hdr),1,f)>0)
    {
        long test;

        test = atol(myheader.ar_size);
        fseek(f,test,SEEK_CUR);
        count++;
    }       
    printf("count is : %d\n",count);
    return count;
}

我写的这段代码是为了计算存档中的文件数。你也可以用它来打印里面的文件名

于 2014-09-02T09:43:16.657 回答