Mediamanager:getFile

From GiderosMobile
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Available since: Gideros 2016.1
Class: Media

Description

Allows user to select a file from system file (tested on windows 10).

(string) = mediamanager:getFile()

Return values

Returns (string) path to the file

Example

Browse your system for a file of any type

function AnimationScene:browse()
	local function mediareceive(e)
		print(e.path)
		mediamanager:removeEventListener(Event.MEDIA_RECEIVE, mediareceive)
	end
	mediamanager:getFile("*", lfs.currentdir())
	mediamanager:addEventListener(Event.MEDIA_RECEIVE, mediareceive)
end