文件夹无法在Gallery中看到

时间:2017-04-24 11:27:21

标签: javascript cordova ionic-framework file-transfer

我正在使用Ionic创建混合应用程序。我在android的DCIM文件夹中创建了一个文件夹,我保存了下载的图像,Gif。

这是我的代码:

  window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fs) {
                    console.log("Root = " + fs.root.toURL() + "DCIM");
                   var entry=fs.root; entry.getDirectory("downloaded images", {create: true, exclusive: false},function (dirEntry) {  },function (error) { }
                                    );
                                }, function (error) {

                        });
                    });

一切正常。唯一的问题是当我将foldername保持为" Downloaded_Images"或者没有空格的东西,我可以在我的android库中看到它,否则文件夹会被创建但在库中不可见。但我需要一个名为&#34的文件夹;下载图像"。

1 个答案:

答案 0 :(得分:0)

您可以尝试这样的事情:

var yourDirectory = decodeURIComponent(fs.root + "downloaded%20images");