| grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » GetPathSeparator() | Version 2.2 |
GetPathSeparator 関数は、オペレーティングシステムのパス区切り文字を返します。
この関数は、引数を受け取りません。
パス区切り文字を出力します。
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 |