访问Corona SDK中的内部存储特定文件夹

时间:2014-11-06 08:52:20

标签: lua corona internal-storage

我理解这会读取保存在app文档目录中的文件:

    filePath = system.pathForFile( "text.txt", system.DocumentsDirectory )

我需要从另一个文件夹而不是我的应用程序中读取文件,比如说,任何手机的“内部存储/下载”文件夹下都存在的文件夹,是否有人在上面放什么代码行而不是system.DocumentsDirectory

1 个答案:

答案 0 :(得分:-1)

以下代码有效。但是,SD卡实际上意味着应用程序中的内部存储。即使第四行直接引用第一行,代码仍然需要中间两行。

    filePath = "/sdcard/coordinates.txt"
    local file = io.open( filePath, "r" )
    local contents = file:read( "*a" )
      for line in io.lines(filePath) do  
        ii=ii+1
        points[ii] = line
        b1 = points[ii]
         c2 = 1
         for i in string.gmatch(b1, "%S+") do
            b={}
            b[c2]=i
            if c2 ==1 then bore[ii] = b[c2] end
            if c2 ==2 then x[ii] = b[c2] end
            if c2 ==3 then y[ii] = b[c2] end
            c2=c2+1
end