gpt4 book ai didi

javascript - 如何从 Javascript 获取 iOS 设备中的文档文件夹

转载 作者:可可西里 更新时间:2023-11-01 04:56:22 25 4
gpt4 key购买 nike

我正在将 cocos2d-js 游戏集成到 native iOS 应用程序中。

在某些时候,我的 ios native 应用程序中有一个 Javascript 函数,代码如下:

var txt = jsb.fileUtils.getStringFromFile("project.json");

但我的 project.json 在 Document 文件夹中,而不是在我的包中。所以我需要在这个 Javascript 文件中获取我的文档文件夹路径,以便具有如下内容:

var myPath = SomeFunctionToGetPath();
var txt = jsb.fileUtils.getStringFromFile("myPath/project.json");

有人知道我应该如何实现 SomeFunctionToGetPath 吗?

感谢您的帮助。

最佳答案

jsb.fileUtils.getWritablePath() 返回 iOS 上文档文件夹的路径。

这是您可以在代码中实现的一种方式:

// First, define the function.
var getFilePath = function(fileName) {
return jsb.fileUtils.getWritablePath() + fileName;
}

// Then, call it when you need it.
var txt = jsb.fileUtils.getStringFromFile(getFilePath("project.json"));

关于javascript - 如何从 Javascript 获取 iOS 设备中的文档文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34992763/

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