linux怎么检查文件是否存在

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/

Linux检查文件是否存在

1. test命令

它经常用来测试条件表达式,用到的命令为test -e <文件>。

2. 用bash shell检查

假设我们有文件目录/home/benben/go_project和文件/home/benben/go_project/test.txt,下面我们用bash shell命令来检测下这个目录和文件是否存在。

检查目录,执行命令[-d /home/benben/go_project ] && echo “found” || echo “not found”或者[-d ./go_project ] && echo “found” || echo “not found”。 检查文件,执行命令[-f /home/benben/go_project/test.txt ] && echo “found” || echo “not found”或者[-f ./test.txt ] && echo “found” || echo “not found”
免费资源网 – https://freexyz.cn/


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞7 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容