Difference between revisions of "Mediamanager:getFile"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.1<br/> '''Supported platforms:''' File:Platform mac.pngFile:Platform pc.png<br/> '''Class:''' Media<br/> === Descrip...")
 
m
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2016.1<br/>
 
'''Available since:''' Gideros 2016.1<br/>
'''Supported platforms:''' [[File:Platform mac.png]][[File:Platform pc.png]]<br/>
 
 
'''Class:''' [[Media]]<br/>
 
'''Class:''' [[Media]]<br/>
  

Revision as of 23:52, 24 October 2022

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