Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
a98b408b
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
a98b408b
编写于
7月 27, 2022
作者:
Z
zhangxingxia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update apis
Signed-off-by:
N
zhangxingxia
<
zhangxingxia1@huawei.com
>
上级
3c5d0e25
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
36 addition
and
62 deletion
+36
-62
zh-cn/application-dev/reference/apis/js-apis-filemanager.md
zh-cn/application-dev/reference/apis/js-apis-filemanager.md
+30
-51
zh-cn/application-dev/reference/apis/js-apis-securityLabel.md
...n/application-dev/reference/apis/js-apis-securityLabel.md
+6
-11
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-filemanager.md
浏览文件 @
a98b408b
...
...
@@ -35,11 +35,9 @@ getRoot(options? : {dev? : DevInfo}) : Promise<FileInfo[]>
**示例:**
```
js
filemanager
.
getRoot
().
then
((
fileInfo
)
=>
{
if
(
Array
.
isArray
(
fileInfo
))
{
for
(
var
i
=
0
;
i
<
fileInfo
.
length
;
i
++
)
{
console
.
log
(
"
file:
"
+
JSON
.
stringify
(
fileInfo
));
}
filemanager
.
getRoot
().
then
((
fileInfos
)
=>
{
for
(
var
i
=
0
;
i
<
fileInfos
.
length
;
i
++
)
{
console
.
log
(
"
files:
"
+
JSON
.
stringify
(
fileInfos
));
}
}).
catch
((
err
)
=>
{
console
.
log
(
err
)
...
...
@@ -69,14 +67,11 @@ getRoot(options? : {dev? : DevInfo}, callback : AsyncCallback<FileInfo[]>)
"
name
"
:
"
local
"
}
};
filemanager
.
getRoot
(
options
,
(
err
,
fileInfo
)
=>
{
if
(
Array
.
isArray
(
fileInfo
))
{
for
(
var
i
=
0
;
i
<
fileInfo
.
length
;
i
++
)
{
console
.
log
(
"
file:
"
+
JSON
.
stringify
(
fileInfo
));
}
filemanager
.
getRoot
(
options
,
(
err
,
fileInfos
)
=>
{
for
(
var
i
=
0
;
i
<
fileInfos
.
length
;
i
++
)
{
console
.
log
(
"
files:
"
+
JSON
.
stringify
(
fileInfos
));
}
});
```
## filemanager.listFile
...
...
@@ -111,18 +106,17 @@ listFile(path : string, type : string, options? : {dev? : DevInfo, offset? : num
**示例:**
```
js
// 获取目录下所有文件
// 通过listFile、getRoot获取的文件uri
let
media_path
=
""
filemanager
.
listFile
(
media_path
,
"
file
"
)
.
then
((
fileInfo
)
=>
{
if
(
Array
.
isArray
(
fileInfo
))
{
for
(
var
i
=
0
;
i
<
fileInfo
.
length
;
i
++
)
{
console
.
log
(
"
file:
"
+
JSON
.
stringify
(
fileInfo
));
}
}
// 获取目录下所有文件,通过getRoot获取的目录uri
filemanager
.
getRoot
().
then
((
fileInfos
)
=>
{
let
file
=
fileInfos
.
find
(
item
=>
item
.
name
==
"
file_folder
"
);
let
path
=
file
.
path
;
filemanager
.
listFile
(
path
,
"
file
"
).
then
((
files
)
=>
{
console
.
log
(
"
files:
"
+
JSON
.
stringify
(
files
));
}).
catch
((
err
)
=>
{
console
.
log
(
"
failed to get file
"
+
err
);
console
.
log
(
"
failed to get files
"
+
err
);
});
}).
catch
((
err
)
=>
{
console
.
log
(
"
failed to get root
"
+
err
);
});
```
...
...
@@ -153,33 +147,18 @@ listFile(path : string, type : string, options? : {dev? : DevInfo, offset? : num
**示例:**
```
js
// 通过listFile、getRoot获取的文件path
let
fileInfos
=
filemanager
.
getRoot
();
let
media_path
=
""
;
for
(
let
i
=
0
;
i
<
fileInfos
.
length
;
i
++
)
{
if
(
fileInfos
[
i
].
name
==
"
image_album
"
)
{
media_path
=
fileInfos
[
i
].
path
;
}
else
if
(
fileInfos
[
i
].
name
==
"
audio_album
"
)
{
media_path
=
fileInfos
[
i
].
path
;
}
else
if
(
fileInfos
[
i
].
name
==
"
video_album
"
)
{
media_path
=
fileInfos
[
i
].
path
;
}
else
if
(
fileInfos
[
i
].
name
==
"
file_folder
"
)
{
media_path
=
fileInfos
[
i
].
path
;
}
}
filemanager
.
listFile
(
media_path
,
"
file
"
)
.
then
((
fileInfo
)
=>
{
if
(
Array
.
isArray
(
fileInfo
))
{
for
(
var
i
=
0
;
i
<
fileInfo
.
length
;
i
++
)
{
console
.
log
(
"
file:
"
+
JSON
.
stringify
(
fileInfo
));
}
}
}).
catch
((
err
)
=>
{
console
.
log
(
"
failed to get file
"
+
err
);
});
```
```
js
// 获取目录下所有文件,通过getRoot获取的目录uri
filemanager
.
getRoot
().
then
((
fileInfos
)
=>
{
let
file
=
fileInfos
.
find
(
item
=>
item
.
name
==
"
image_album
"
);
let
path
=
file
.
path
;
filemanager
.
listFile
(
path
,
"
image
"
,
function
(
err
,
files
){
console
.
log
(
"
files:
"
+
JSON
.
stringify
(
files
));
})
}).
catch
((
err
)
=>
{
console
.
log
(
"
failed to get root
"
+
err
);
});
```
## filemanager.createFile
...
...
zh-cn/application-dev/reference/apis/js-apis-securityLabel.md
浏览文件 @
a98b408b
...
...
@@ -48,8 +48,7 @@ setSecurityLabel(path:string, type:dataLevel):Promise<void>
**示例:**
```
js
let
type
=
"
s4
"
;
securityLabel
.
setSecurityLabel
(
path
,
type
).
then
(
function
(){
securityLabel
.
setSecurityLabel
(
path
,
"
s0
"
).
then
(
function
(){
console
.
info
(
"
setSecurityLabel successfully
"
);
}).
catch
(
function
(
error
){
console
.
info
(
"
setSecurityLabel failed with error:
"
+
error
);
...
...
@@ -75,8 +74,7 @@ setSecurityLabel(path:string, type:dataLevel, callback: AsyncCallback<void>
**示例:**
```
js
let
type
=
"
s4
"
;
securityLabel
.
setSecurityLabel
(
path
,
type
,
function
(
error
){
securityLabel
.
setSecurityLabel
(
path
,
"
s0
"
,
function
(
error
){
console
.
info
(
"
setSecurityLabel:
"
+
JSON
.
stringify
(
error
));
});
```
...
...
@@ -98,8 +96,7 @@ setSecurityLabelSync(path:string, type:dataLevel):void
**示例:**
```
js
let
type
=
"
s4
"
;
securityLabel
.
setSecurityLabelSync
(
path
,
type
);
securityLabel
.
setSecurityLabelSync
(
path
,
"
s0
"
);
```
## securityLabel.getSecurityLabel
...
...
@@ -125,11 +122,10 @@ getSecurityLabel(path:string):Promise<string>
**示例:**
```
js
let
type
=
"
s4
"
;
securityLabel
.
getSecurityLabel
(
path
).
then
(
function
(
type
){
console
.
log
(
"
getSecurityLabel successfully:
"
+
type
);
}).
catch
(
function
(
err
or
){
console
.
log
(
"
getSecurityLabel failed with error:
"
+
err
or
);
}).
catch
(
function
(
err
){
console
.
log
(
"
getSecurityLabel failed with error:
"
+
err
);
});
```
...
...
@@ -151,8 +147,7 @@ getSecurityLabel(path:string, callback:AsyncCallback<string>): void
**示例:**
```
js
let
type
=
"
s4
"
;
securityLabel
.
getSecurityLabel
(
path
,
function
(
error
,
type
){
securityLabel
.
getSecurityLabel
(
path
,
function
(
err
,
type
){
console
.
log
(
"
getSecurityLabel successfully:
"
+
type
);
});
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录