URLを開く

love.system.openURL

追加バージョン0.9.0削除バージョン-

指定したURLを開く

function love.load()
  love.system.openURL("https://www.google.co.jp")
end

指定したディレクトリを開く

function love.load()
  love.system.openURL("file:///Users/xxxxxx/test")
end