Getting application directory in phone gap

后端 未结 2 813
鱼传尺愫
鱼传尺愫 2020-12-19 02:37

Using the file api of phone gap build, I want to get the application directory in which all files should be stored.

What command do I need to use?

2条回答
  •  离开以前
    2020-12-19 02:53

    You can use cordova.file.applicationDirectory for getting your app directory. It will resolve to file:///android_asset/ in android and /var/mobile/Applications//.app/ in IOS

    You can get all your app files in the www directory in both android and iOS.

    window.resolveLocalFileSystemURL(cordova.file.applicationDirectory+'www/index.html',success,fail);
    function success(fileEntry){
    console.log("got the file object")
    }
    function fail(error){
    console.log("error");
    }
    

    for getting the app directory on the filesystem where your app files will be stored can be get by cordova.file.applicationStorageDirectory which further contains two directories files and cache both are persistent.

    you can check the link for further details..

    https://github.com/apache/cordova-plugin-file/blob/master/doc/index.md

提交回复
热议问题