Check whether a certain file type/extension exists

2019-03-08 22:54发布

How would you go about telling whether files of a specific extension are present in a directory, with bash?

Something like

if [ -e *.flac ]; then 
echo true; 
fi 

标签: linux bash shell
13条回答
2楼-- · 2019-03-08 23:23

The top solution (if [ -e *.flac ];) did not work for me, giving: [: too many arguments

if ls *.flac >/dev/null 2>&1; then it will work.

查看更多
何必那么认真
3楼-- · 2019-03-08 23:27
   shopt -s nullglob
   set -- $(echo *.ext)
    if [ "${#}" -gt 0 ];then
      echo "got file"
    fi
查看更多
放我归山
4楼-- · 2019-03-08 23:29
#!/bin/bash

count=`ls -1 *.flac 2>/dev/null | wc -l`
if [ $count != 0 ]
then 
echo true
fi 
查看更多
SAY GOODBYE
5楼-- · 2019-03-08 23:29

bash only:

any_with_ext () ( 
    ext="$1"
    any=false
    shopt -s nullglob
    for f in *."$ext"; do
        any=true
        break
    done
    echo $any 
)

if $( any_with_ext flac ); then
    echo "have some flac"
else 
    echo "dir is flac-free"
fi

I use parentheses instead of braces to ensure a subshell is used (don't want to clobber your current nullglob setting).

查看更多
萌系小妹纸
6楼-- · 2019-03-08 23:30

You can use -f to check whether files of a specific type exist:

#!/bin/bash

if [ -f *.flac ] ; then
   echo true
fi 
查看更多
混吃等死
7楼-- · 2019-03-08 23:32

You need to be carful which flag you throw into your if statement, and how it relates to the outcome you want.

If you want to check for only regular files and not other types of file system entries then you'll want to change your code skeleton to:

if [ -f file ]; then
echo true;
fi

The use of the -f restricts the if to regular files, whereas -e is more expansive and will match all types of filesystem entries. There are of course other options like -d for directories, etc. See http://tldp.org/LDP/abs/html/fto.html for a good listing.

As pointed out by @msw, test (i.e. [) will choke if you try and feed it more than one argument. This might happen in your case if the glob for *.flac returned more than one file. In that case try wrapping your if test in a loop like:

for file in ./*.pdf
do
    if [ -f "${file}" ]; then
    echo 'true';
    break
    fi
done

This way you break on the first instance of the file extension you want and can keep on going with the rest of the script.

查看更多
登录 后发表回答