免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2023 | 回复: 6
打印 上一主题 下一主题

How to get the name of the file pointed to by symbolic link [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-03-19 10:38 |只看该作者 |倒序浏览
as title,
how do do it in c language?
is there any system function can be invoked?

Thanks

论坛徽章:
0
2 [报告]
发表于 2003-03-19 12:49 |只看该作者

How to get the name of the file pointed to by symbolic link

stat  lstat 函数
haosheng 该用户已被删除
3 [报告]
发表于 2003-03-19 21:08 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
4 [报告]
发表于 2003-03-20 10:58 |只看该作者

How to get the name of the file pointed to by symbolic link

you might misunderstood my means, what you do is just
to check whether  the file is a symbolic link, but what I
want to know is how to get the file name(including the whole path)
of the file that pointed to by the symbolic link, for example:

the symbolic link  is '/home/cs/temp/test_slink',  and it is
pointed to '/home/cs/share/test', then, in c func, how  do we
know that '/home/cs/temp/test_slink' is pointed to '/home/cs/share/test'?

thanks!

论坛徽章:
0
5 [报告]
发表于 2003-03-21 00:11 |只看该作者

How to get the name of the file pointed to by symbolic link

i catch what you mean. but i dont know how to do it

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
6 [报告]
发表于 2003-03-21 12:18 |只看该作者

How to get the name of the file pointed to by symbolic link

U can use readlink.

#ll ee
lrwxrwxrwx    1 gadfly      gadfly             2  3月 20 13:20 ee ->; bb

getlink.c


  1. #include <stdio.h>;

  2. int main()
  3. {

  4.         char buf[256];
  5.         int len;

  6.         len = readlink("ee", buf, sizeof(buf));
  7.         if (len >; -1) {
  8.                 buf[len] = '\0';
  9.                 printf("ee link from :%s\n", buf);
  10.         }
  11.         return 0;
  12. }
复制代码


#gcc -o getlink getlink.c

./getlink
ee link from :bb

论坛徽章:
0
7 [报告]
发表于 2003-03-21 13:41 |只看该作者

How to get the name of the file pointed to by symbolic link

thanks gadfly!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP