如何使用codenameone在iPhone上建立目录?

时间:2019-01-16 08:31:04

标签: codenameone

这听起来像一个荒谬的问题,但是我一生都无法使用codenameone在ios上建立目录。有人做过吗?这是我尝试的方法(有些愚蠢的测试有些没有那么愚蠢,我在这里变得很绝望):

FileSystemStorage fs = FileSystemStorage.getInstance();
    fs.mkdir("ZZZTESTA");
    fs.mkdir("ZZZTESTB");
    String testpath = fs.getAppHomePath()+"/xxxtesta";
    fs.mkdir(testpath);
     String testpathb = fs.getAppHomePath()+"xxxtestb";
    fs.mkdir(testpathb);
     String testpathC = fs.getAppHomePath()+"xxxtest/";
    fs.mkdir(testpathC);
    String nativetest = fs.toNativePath(testpathb);        
    fs.mkdir(nativetest);        
     String nativetestb = fs.toNativePath(testpathC);        
    fs.mkdir(nativetestb);

我已经进行了各种各样的实验,但是总是得到:无法创建目录xxxxx ..如果您可以帮助,我将飞到您的位置并给您送礼:)

1 个答案:

答案 0 :(得分:0)

这些将起作用:

String testpathb = fs.getAppHomePath()+"xxxtestb";
fs.mkdir(testpathb);
String testpathC = fs.getAppHomePath()+"xxxtest/";
fs.mkdir(testpathC);