Ionic 2文件插件 - 创建目录错误

时间:2017-05-14 03:27:11

标签: android cordova ionic2 cordova-plugins ionic-native

我正在尝试一些离子本机插件,到目前为止,除文件插件外,一切都很棒。我一直在尝试在文件插件提供的externalDataDirectory路径中创建目录。我要做的是检查目录是否存在,但实际上似乎是问题。我一直在和ErrCode 5:ENCODING ERR。这是我的代码。

import { File } from '@ionic-native/file';
import { FilePath } from '@ionic-native/file-path';

export class MyClass {

    constructor(private file: File, private filePath: FilePath) {}

    createDirectory(onSuccess?: (val: any) => any, onError?: (err: any) => any) {
    // root_dir = this.file.externalDataDirectory
    this.filePath.resolveNativePath(this.root_dir).then(
      (nativePath) => {
        this.file.checkDir(nativePath, 'myDir').then(
          (exists) => {
            if (!exists) {
              this.file.createDir(nativePath, 'myDir', false).then(
                (dirEntry) => {
                  onSuccess(dirEntry);
                },
                (err) => {
                  console.log('CreateDir error: ' + err);
                  onError(err);
                }
              ).catch( (exception) => { console.log(exception); } );
            }
            else {
              return nativePath + 'myDir';
            }
          },
          (err) => {
            console.log('CheckDir error: ' + err);
            onError(err);
          }
        ).catch( (exception) => { console.log(exception); } );
      },
      (err) => {
       // error occurs here.
        onError(err);
      }
    )
  }
}

我不知道我做错了什么,任何人都可以帮忙。谢谢!!! 我知道问题似乎是来自resolveNativePath方法,但是当我删除它仍然无法正常工作时我得到一个错误:NOT FOUND ERR

0 个答案:

没有答案