cordova,android app如何创建子文件夹

问题描述 投票:1回答:2

我正在使用cordova,我尝试在设备上创建一个文件夹到我的SD卡的根目录。我使用以下代码创建文件夹并在其中添加文件'login.txt':

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);

function gotFS(fileSystem) {
   fileSystem.root.getDirectory("citylook", {create: true}, gotDir);
}

function gotDir(dirEntry) {
    dirEntry.getFile("login.txt", {create: true, exclusive: true}, gotFile);
}

function gotFile(fileEntry) {
    // Do something with fileEntry here
    fileEntry.createWriter(gotFileWriter, fail);
}


function gotFileWriter(writer) {
    writer.onwriteend = function(evt) {
        console.log("contents of file now 'some sample text'");
        writer.truncate(11);
        writer.onwriteend = function(evt) {
            writer.seek(0);
            writer.write(testo);
            writer.onwriteend = function(evt){
                console.log("contents of file now '"+testo+"'");
            }
        };
    };
    writer.write("some sample text");
}

function fail(error) {
    console.log(error.code);
}

现在,我需要在“citylook”文件夹中创建一个文件夹,我试试这个:

function onDeviceReady() {
    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onSuccess, null);
}

function onSuccess() {
    fileSystem.root.getDirectory("citylook", {create: true, exclusive: false}, onGetDirectoryWin, onGetDirectoryFail);
    fileSystem.root.getDirectory("citylook/nuovo", {create: true, exclusive: false}, onGetDirectoryWin2, onGetDirectoryFail2);
}

....

但我无法创建一个子文件夹....我的代码有什么问题?

谢谢

解决了:

fileSystem.root.getDirectory("citylook", {create: true}, gotDir);
fileSystem.root.getDirectory("citylook/subfolder", {create: true}, gotDir);
android directory cordova-3
2个回答
0
投票
var type = window.PERSISTENT;
   var size = 5*1024*1024;

   window.requestFileSystem(type, 0, successCallback, errorCallback);
   function successCallback(fs) {
       var dir=fs.root;
       alert('root   -'+dir.fullPath);// O/P:-root   -/
      dir.getDirectory('Albums', {create: true}, function(dirEntry) {
          alert('Albums Path:'+dirEntry.fullPath);// O/P:-Allbums Path: /Albums/
         dirEntry.getDirectory('Images',{create:true},function(subDir){
                              alert('Hello');
                              alert('SubDirPath='+subDir.fullPath);//output:-SubDirPath=/Albums/Images/
             //subDir.getFile('Log.txt',{create: true, exclusive: false}, function(fileEntry) {

        //writeFile(fileEntry, null, isAppend);
                 //alert('File Path'+fileEntry.fullPath);

    }, onErrorCallback);

         },errorCallback);
          dirEntry.getDirectory('Audio',{create:true},function(subDir){
                              alert('Hello');
                              alert('SubDirPath='+subDir.fullPath);//output:-SubDirPath=/Albums/Audio/
         },errorCallback);
      }, errorCallback);
   }
        function errorCallback(error) {
      alert("ERROR: " + error.code)
   }

此代码有助于在root中创建文件夹和子文件夹。 /相册是主文件夹。 /相册/图像/和/相册/音频/是子文件夹(图像和音频)


0
投票
window.resolveLocalFileSystemURL(
        cordova.file.externalDataDirectory,
        function(entry) {
          entry.getDirectory(
            "myNewDirectory",
            { create: true, exclusive: false },
            function(result) {
              alert(JSON.stringify(result));
            },
            onError
          );
        }
      );

我正在使用cordova为Android / data //文件成功创建一个文件夹。

© www.soinside.com 2019 - 2024. All rights reserved.