linux-在指定路径下查询文件夹是否存在
我们常常在Linux下去查找文件
find / -name ‘test.py‘ # 在根目录下查找名为test.py的文件
但是如果用查找文件的方式去查找文件夹的话,是查不到的
find / -maxdepth 1 -type d -name ‘test_dictionary‘ # -maxdepth表示搜索深度。-type表示搜索类型。
查找成功返回相应路径
相关推荐
jimeshui 2020-11-13
ningningmingming 2020-08-14
andylanzhiyong 2020-06-16
咏月东南 2020-06-16
lanyou00 2020-06-06
secondid 2020-06-05
chenchuang 2020-05-29
kylinos 2020-03-07
onlykg 2020-05-06
farwang 2020-04-26
applex 2020-04-22
bluecarrot 2020-04-20
csdnyasin 2020-04-11
xushxbigbear微信 2020-02-19
jackadmi 2020-02-19
神龙 2020-02-15
Darklovy 2020-01-12