当前位置: 技术问答>linux和unix
请问用什么方法能判断一个文件是否存在,谢谢!
来源: 互联网 发布时间:2015-02-23
本文导语: 请问用什么方法能判断一个文件是否存在,谢谢! | 在 shell 中: if [ -f filename ]; then echo exist file fi 判断目录是否存在: if [ -d dirname ]; then echo dir...
请问用什么方法能判断一个文件是否存在,谢谢!
|
在 shell 中:
if [ -f filename ]; then
echo exist file
fi
判断目录是否存在:
if [ -d dirname ]; then
echo dir exist
fi
if [ -f filename ]; then
echo exist file
fi
判断目录是否存在:
if [ -d dirname ]; then
echo dir exist
fi
|
如果在C程序中:
access("filename",F_OK);
存在返回0,不存在返回-1
access("filename",F_OK);
存在返回0,不存在返回-1