你能告诉我如何在android(SDCard)和IOS的目录中创建文件夹吗?我还需要计算同一目录中的文件夹数。我有目录 File://SDCard/test 。在这里一一创建文件夹。在应用程序启动期间,我需要计算 dame 目录中的文件夹数。
iPhone的目录是什么?
你能告诉我如何在android(SDCard)和IOS的目录中创建文件夹吗?我还需要计算同一目录中的文件夹数。我有目录 File://SDCard/test 。在这里一一创建文件夹。在应用程序启动期间,我需要计算 dame 目录中的文件夹数。
iPhone的目录是什么?
看看基于 W3C File API的Cordova File API。它用于读取、写入和导航文件系统层次结构。
列出文件和文件夹
为了列出/计算目录中的列表和文件,您必须使用该DirectoryReader
对象。
支持的平台:
例子:
function success(entries) {
var i;
for (i=0; i<entries.length; i++) {
console.log(entries[i].name);
}
}
function fail(error) {
alert("Failed to list directory contents: " + error.code);
}
// Get a directory reader
var directoryReader = dirEntry.createReader();
// Get a list of all the entries in the directory
directoryReader.readEntries(success,fail);
创建目录
为了创建目录,您必须使用该DirectoryEntry
对象。该对象包含创建或查找目录的getDirectory方法。
支持的平台:
例子:
<!DOCTYPE html>
<html>
<head>
<title>Local File System Example</title>
<script type="text/javascript" charset="utf-8" src="cordova-x.x.x.js"></script>
<script type="text/javascript" charset="utf-8">
// Wait for Cordova to load
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
function onDeviceReady() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, onFileSystemFail);
}
function onFileSystemSuccess(fileSystem) {
console.log(fileSystem.name);
var directoryEntry = fileSystem.root;
directoryEntry.getDirectory("newDir", {create: true, exclusive: false}, onDirectorySuccess, onDirectoryFail)
}
function onDirectorySuccess(parent) {
console.log(parent);
}
function onDirectoryFail(error) {
alert("Unable to create new directory: " + error.code);
}
function onFileSystemFail(evt) {
console.log(evt.target.error.code);
}
</script>
</head>
<body>
<h1>Example</h1>
<p>Local File System</p>
</body>
</html>
我希望这有帮助。