-
-e "/path/to/file"
: 判断文件或目录是否存在。 -
-f "/path/to/file"
: 判断是否为普通文件。 -
-d "/path/to/dir"
: 判断是否为目录。 -
-r "/path/to/file"
: 判断文件是否可读。 -
-w "/path/to/file"
: 判断文件是否可写。 -
-x "/path/to/file"
: 判断文件是否可执行。
-e "/path/to/file"
: 判断文件或目录是否存在。-f "/path/to/file"
: 判断是否为普通文件。-d "/path/to/dir"
: 判断是否为目录。-r "/path/to/file"
: 判断文件是否可读。-w "/path/to/file"
: 判断文件是否可写。-x "/path/to/file"
: 判断文件是否可执行。