0

我知道这会读取保存在应用程序文档目录中的文件:

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

我需要从另一个文件夹而不是我的应用程序中读取文件,例如,存在于任何移动设备的“内部存储/下载”文件夹下的文件夹,任何人都可以在上面的代码行中放入什么而不是system.DocumentsDirectory

4

1 回答 1

-1

以下代码有效。但是,sdcard 实际上是指应用程序中的内部存储。即使第四行直接引用第一行,中间两行也是代码工作所必需的。

    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
于 2014-11-08T09:49:17.967 回答