work on getxattr
This commit is contained in:
parent
5d022c3ca3
commit
37d998fb55
10
src/fs.js
10
src/fs.js
|
@ -1598,6 +1598,16 @@ define(function(require) {
|
|||
function _getxattr(context, path, name, callback) {
|
||||
if(!nullCheck(path, callback)) return;
|
||||
|
||||
function fetch_value(error, value) {
|
||||
if (error) {
|
||||
callback(error);
|
||||
}
|
||||
else {
|
||||
callback(null, value);
|
||||
}
|
||||
}
|
||||
|
||||
getxattr_file(context, path, name, fetch_value);
|
||||
}
|
||||
|
||||
function _setxattr(context, path, name, value, flag, callback) {
|
||||
|
|
Loading…
Reference in New Issue