Linux uses if to determine whether a directory exists.

Linux uses if to determine whether a directory exists.

How to use if in Linux to determine whether a directory exists

Here’s how:

1. How to use if in the script to determine whether a directory exists

#!/bin/bash
if [ -d "c" ];then
  echo "directory c exists"
 else
   echo "directory does not exist"
fi

2. Simple writing

#!/bin/bash
[ -d "c" ] && echo "Directory c exists"
# or [ -d "d" ] || echo "Directory d does not exist"

More judgment formats are as follows:

-e filename True if filename exists

-d filename True if filename is a directory

-f filename True if filename is a regular file.

-L filename True if filename is a symbolic link

-r filename True if filename is readable

-w filename True if filename is writable

-x filename True if filename is executable

-s filename True if filename is not zero length

-h filename True if filename is a soft link

This concludes this article on how to use if in Linux to determine whether a directory exists. For more information on how to use if in Linux to determine whether a directory exists, please search for previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Linux file/directory permissions and ownership management
  • How to change the MySQL database directory location under Linux (CentOS) system
  • Deleting files with spaces in Linux (not directories)
  • Summary of Linux file directory management commands

<<:  Several common methods of sending requests using axios in React

>>:  Detailed explanation of how to connect Java to Mysql version 8.0.18

Recommend

How to solve the problem of too many open files in Linux

The cause is that the process opens a number of f...

How to create users and manage permissions in MySQL

1. How to create a user and password 1. Enter the...

Best tools for taking screenshots and editing them in Linux

When I switched my primary operating system from ...

The difference and use of json.stringify() and json.parse()

1. Differences between JSON.stringify() and JSON....

Analysis of several reasons why Iframe should be used less

The following graph shows how time-consuming it is...

Detailed steps to install MySQL 5.7 via YUM on CentOS7

1. Go to the location where you want to store the...

Detailed explanation of querying JSON format fields in MySQL

During the work development process, a requiremen...

MySQL MyISAM default storage engine implementation principle

By default, the MyISAM table will generate three ...

js to implement file upload style details

Table of contents 1. Overview 2. Parameters for c...

CSS scroll bar style modification code

CSS scroll bar style modification code .scroll::-...

How to implement HTML Table blank cell completion

When I first taught myself web development, there...

Detailed explanation of map overlay in openlayers6

1. Overlay Overview Overlay means covering, as th...

React implements multi-component value transfer function through conetxt

The effect of this function is similar to vue的pro...