提交 da0ce65f 编写于 作者: A Annie_wang

update docs

Signed-off-by: NAnnie_wang <annie.wangli@huawei.com>
上级 faa43270
# statfs # statfs
> ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE:**<br/> > ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE:**<br>
> The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version. > The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version.
## Modules to Import ## Modules to Import
...@@ -44,9 +44,9 @@ Obtains the number of free bytes of the specified file system in asynchronous mo ...@@ -44,9 +44,9 @@ Obtains the number of free bytes of the specified file system in asynchronous mo
- Example - Example
```js ```js
let path = "/data"; let path = "/dev";
statfs.getFreeBytes(path).then(function (number){ statfs.getFreeBytes(path).then(function (number){
console.info("getFreeBytes successfully:"+ number); console.info("getFreeBytes promise successfully:"+ number);
}).catch(function(err){ }).catch(function(err){
console.info("getFreeBytes failed with error:"+ err); console.info("getFreeBytes failed with error:"+ err);
}); });
...@@ -71,7 +71,7 @@ Obtains the number of free bytes of the specified file system in asynchronous mo ...@@ -71,7 +71,7 @@ Obtains the number of free bytes of the specified file system in asynchronous mo
```js ```js
statfs.getFreeBytes(path, function(err, number){ statfs.getFreeBytes(path, function(err, number){
//do something console.info("getFreeBytes callback successfully:"+ number);
}); });
``` ```
...@@ -98,9 +98,9 @@ Obtains the total number of bytes of the specified file system in asynchronous m ...@@ -98,9 +98,9 @@ Obtains the total number of bytes of the specified file system in asynchronous m
- Example - Example
```js ```js
let path = "/data"; let path = "/dev";
statfs.getTotalBytes(path).then(function (number){ statfs.getTotalBytes(path).then(function (number){
console.info("getTotalBytes successfully:"+ number); console.info("getTotalBytes promise successfully:"+ number);
}).catch(function(err){ }).catch(function(err){
console.info("getTotalBytes failed with error:"+ err); console.info("getTotalBytes failed with error:"+ err);
}); });
...@@ -125,6 +125,6 @@ Obtains the total number of bytes of the specified file system in asynchronous m ...@@ -125,6 +125,6 @@ Obtains the total number of bytes of the specified file system in asynchronous m
```js ```js
statfs.getTotalBytes(path, function(err, number){ statfs.getTotalBytes(path, function(err, number){
//do something console.info("getTotalBytes callback successfully:"+ number);
}); });
``` ```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册