Returns the full path to a special folder commonly used for images, videos, music etc.
app.GetSpecialFolder(
name )
→
String: path to file or folder ( “/absolute/...” or “relative/...” )
See Also: GetPath, GetAppPath, WriteFile
Example - Get Pictures folder
function OnStart()
{
var fld = app.GetSpecialFolder( "Pictures" );
app.Alert( fld );
}