GetPathSeparator()

grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » GetPathSeparator() Version 2.0

説明

GetPathSeparator 関数は、オペレーティングシステムのパス区切り文字を返します。

引数

この関数は、引数を受け取りません。

戻り値

  • string:
    オペレーティングシステムでのパス区切りを表す1文字を返します。

パス区切り文字を出力します。

Lua
return function()
--- This prints the path seperator. It is different between a Linux and macOS (/) and a Windows (\) operating system.
Printf("The path seperator is " .. GetPathSeparator())
end