From e68bb31dc8cb52f90ce9098ed73f844150128c4d Mon Sep 17 00:00:00 2001 From: 18721213663 Date: Fri, 14 Apr 2023 11:41:53 +0800 Subject: [PATCH] fix_fs_access_return_explain Signed-off-by: 18721213663 --- zh-cn/application-dev/reference/apis/js-apis-file-fs.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-file-fs.md b/zh-cn/application-dev/reference/apis/js-apis-file-fs.md index c3077a4411..f82b23a8fc 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-file-fs.md +++ b/zh-cn/application-dev/reference/apis/js-apis-file-fs.md @@ -146,7 +146,7 @@ access(path: string): Promise<boolean> | 类型 | 说明 | | ------------------- | ---------------------------- | - | Promise<boolean> | Promise对象。返回boolean。 | + | Promise<boolean> | Promise对象。返回boolean,表示文件是否存在。 | **示例:** @@ -206,6 +206,12 @@ accessSync(path: string): boolean | ------ | ------ | ---- | ------------------------------------------------------------ | | path | string | 是 | 文件应用沙箱路径。 | +**返回值:** + + | 类型 | 说明 | + | ------------------- | ---------------------------- | + | boolean | 返回boolean,表示文件是否存在。 | + **示例:** ```js -- GitLab