gpt4 book ai didi

javascript - 使用 Phonegap 文件 API 获取所有文件名

转载 作者:行者123 更新时间:2023-12-02 07:41:10 25 4
gpt4 key购买 nike

我正在使用 Phonegap 文件上传将 SVG 文件上传到我的服务器。它工作正常。但我需要从 iPad 的绝对路径中获取所有 SVG 文件并将它们发送到我的服务器。我不知道如何使用 Phonegap 的文件 API 获取所有 .svg 文件,以便我可以通过文件名循环发送到服务器。请告诉我该怎么做。

我的文件上传代码是:

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
}
function gotFS(fileSystem) {
fileSystem.root.getFile("image5_2.jpg.svg", {create: true, exclusive: false}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
var localpath=fileEntry.fullPath;
uploadPhoto(localpath);
}
function uploadPhoto(imageURI) {
var options = new FileUploadOptions();
var ft = new FileTransfer();
ft.upload(imageURI, "http://192.168.1.54:8080/POC/fileUploader", win, fail, options);
}

最佳答案

您需要创建一个 DirectoryReader从根文件系统开始,循环遍历所有条目以查找 .svg 文件。

function gotFS(fileSystem) {
var reader = fileSystem.root.createReader();
reader.readEntries(gotList, fail);
}

function gotList(entries) {
var i;
for (i=0; i<entries.length; i++) {
if (entries[i].name.indexOf(".svg") != -1) {
uploadPhoto(entries[i].fullPath);
}
}
}

您可能需要对此代码进行一些小的修改,但这应该能让您入门。

关于javascript - 使用 Phonegap 文件 API 获取所有文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11062882/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com