我想将我的文件保存在一个文件夹中,但提出的问题是我的文件存储在文件夹之外,这很烦人。我正在分享我到目前为止所做的事情。
-- 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()
但是我录制的文件不在这个新创建的文件夹中,有人可以帮我吗?