如何将目录移动到JavaScript中的其他目录?

时间:2017-08-11 09:45:04

标签: javascript file directory move

我想从

移动文件夹
file:///storage/emulated/0/sync//

到Android应用程序沙箱

file:///data/data/de.tara.SyncMobile/files/files/sync//

为此,我写了一个函数。我用这个链接的帮助:

https://www.w3.org/TR/2012/WD-file-system-api-20120417/

https://www.html5rocks.com/de/tutorials/file/filesystem/

这是我的代码:

window.requestFileSystem(LocalFileSystem.PERSISTENT,0,requestFileSystemSuccess,requestFileSystemError);

function requestFileSystemSuccess(fs)
            {
                console.log("Master.js:requestFileSystemSuccess");

                var syncDir = fs.root.getDirectory("sync",{});
                var syncSandboxDir = fs.root.getDirectory("",{});

                //how i can move the sync directory to the sanbox path????


            }

0 个答案:

没有答案