我在这里发布了同样的问题:
但这些答案不一定能解决问题。我有一个存档文件 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 非常陌生)。有人可以帮助理解这段代码,或者指出我编写程序的正确方向吗?谢谢你。