Skip to content

Commit 19ddcc4

Browse files
authored
Merge pull request #67 from guozhenh/zhen-wiki
修正ql_fs
2 parents 29f281e + 62897e6 commit 19ddcc4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

en-us/api/QuecPythonThirdlib.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1775,7 +1775,7 @@ Check whether the file or folder exists
17751775

17761776
```python
17771777
import ql_fs
1778-
ret = ql_fs.ql_fs.path_dirname("/usr/xxx.py")
1778+
ret = ql_fs.path_exists("/usr/xxx.py")
17791779
print(ret)
17801780

17811781
#Print true does not exist false

zh-cn/api/QuecPythonThirdlib.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1806,7 +1806,7 @@ REPL refuse
18061806

18071807
```python
18081808
import ql_fs
1809-
ret = ql_fs.ql_fs.path_dirname("/usr/xxx.py")
1809+
ret = ql_fs.path_exists("/usr/xxx.py")
18101810
print(ret)
18111811

18121812
# 存在打印True 不存在 False

0 commit comments

Comments
 (0)