我想将我的文件保存在一个文件夹中,但引发的问题是我的文件存储在文件夹之外,这很烦人。我正在分享我到目前为止所做的工作。
-- get raw path to app's Temporary directory
local doc_path = system.pathForFile( "", system.DocumentsDirectory )
-- change current working directory
local success = lfs.chdir( doc_path ) -- returns true on success
local new_folder_path
if success then
lfs.mkdir( "MyNewFolder" )
new_folder_path = lfs.currentdir() .. "/MyNewFolder"
end
local filePath = system.pathForFile( dataFileName , new_folder_path )
r = media.newRecording(filePath)
--print("new recording has been started with a name"..dataFileName)
r:startRecording()
但是我录制的文件不在这个新创建的文件夹中有人可以在这里帮助我吗?
我搜索了一下,终于得到了问题的答案。这是在指定文件夹中创建新录制文件的方法
r = media.newRecording( new_folder_path.."/"..dataFileName )
如问题中所述,此行将自动在此文件夹中创建一个文件。 system.pathForFile()
仅在第二个参数是像system.DocumentsDirectory
这样的基目录时自动创建一个文件(因为文档中明确提到第二个参数是常量,它应该只是任何基目录)。因此,如果您想创建一个新的文件 R 想要查找文件的路径,您会在文件名之前附加文件夹名称,例如 my folder/my file
希望这会有所帮助