Mediamanager:getFile

From GiderosMobile
Revision as of 15:28, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")

Available since: Gideros 2016.1
Class: Media

Description

Allows user to select a file from system file (tested on windows 10). <syntaxhighlight lang="lua"> (string) = mediamanager:getFile() </source>

Return values

Returns (string) path to the file

Example

Browse your system for a file of any type <syntaxhighlight lang="lua"> 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 </source>