# fs.is_exists

## 功能

判断路径是否存在。

## 语法

```bt
fs(path).is_exists()
```

## 参数

无参数。

## 返回值

| 类型 | 说明 |
| ------ | ------ |
| Bool | 路径存在返回 true，否则返回 false。 |

## 示例

```bt
file = fs('docs-exists.txt')
file.write('BT')
result = file.is_exists()

// 输出：true
print result
```

## 注意事项

- 该方法不区分文件、目录或符号链接。
