标准C中,如何判断当前路径?(50分)

  • 主题发起人 主题发起人 DiamondKing
  • 开始时间 开始时间
D

DiamondKing

Unregistered / Unconfirmed
GUEST, unregistred user!
在Unix c 中,
1如何获取当前路径?
2如何判断当前路径下面是否存在某个文件夹?
 
1,#include <sys/types.h>
#include <sys/dir.h>
struct direct *readdir(DIR *dirp);
dirp = opendir(".");
2,access, fstat
 
Chenlili:access, fstat 好像都只能检测文件是否存在?
 

1.
getwd();
2.
if ((dp=opendir(name))==NULL)
{
perror(name);
exit(1);
}
 
cook: 当前要使用第三方的库文件(corba中间件)。编译的时候,该怎样包含它?
我看了原来的编译过程,好像是写一个.com文件,然后使用
chmod 改变.com为可执行(具体参数是什么不清楚),用.com xxx.c编译。
可以讲讲吗?
 
我是在这里路过,看到了这么一段
http://www.fanqiang.com/a4/b2/20010613/081000506.html
具体如何没有研究过。
 
谢谢了。
 
后退
顶部