Below example will help to find the specific folder in the current directory. This example only search current direct and it'll search sub directory available in the current directory
#!/bin/bash
result=$(ls -d operational)
echo $result
test="operational"
if [ "$result" == "$test" ]
then
echo "TRUE"
else
echo "FALSE"
fi