Difference between revisions of "love.filesystem.read (日本語)"
m |
(→返値) |
||
Line 28: | Line 28: | ||
{{param|number|size (all)|読み込みバイト数を指定します。}} | {{param|number|size (all)|読み込みバイト数を指定します。}} | ||
=== 返値 === | === 返値 === | ||
− | {{param|value|contents|ファイルの内容がある [[FileData (日本語|FileData | + | {{param|value|contents|ファイルの内容がある [[FileData (日本語)|FileData]] または文字列。}} |
{{param|number|size|読み込んだバイト数を返します。}} | {{param|number|size|読み込んだバイト数を返します。}} | ||
+ | |||
=== 返値 (読み込みエラー発生時) === | === 返値 (読み込みエラー発生時) === | ||
{{param|nil|contents|内容を nil として返します。}} | {{param|nil|contents|内容を nil として返します。}} |
Revision as of 07:51, 25 June 2019
ファイルの内容を読み込みます。
Contents
関数
概要
contents, size = love.filesystem.read( name, size )
引数
返値
返値 (読み込みエラー発生時)
関数
LÖVE 11.0 から使用可能 |
この異形は以前のバージョンでは非対応です。 |
ファイルの内容を FileData オブジェクト、または文字列へ読み込みます。
概要
contents, size = love.filesystem.read( container, name, size )
引数
ContainerType container
- 返したいファイル内容の形式。
string name
- ファイル(およびパス)の名前。
number size (all)
- 読み込みバイト数を指定します。
返値
返値 (読み込みエラー発生時)
関連