Interface IFileRead
ファイルを読み込むモジュール
Namespace: Pixiv.VroidSdk.IO
Assembly: Pixiv.VroidSdk.dll
Syntax
public interface IFileRead
Methods
IsFileExist(String)
ファイルが存在するかチェックする
Declaration
bool IsFileExist(string filePath)
Parameters
Type | Name | Description |
---|---|---|
String | filePath | チェックするファイルパス |
Returns
Type | Description |
---|---|
Boolean | ファイルの有無 |
Load(String)
ファイルを読み込む
Declaration
byte[] Load(string filePath)
Parameters
Type | Name | Description |
---|---|---|
String | filePath | 読み込むファイル名 |
Returns
Type | Description |
---|---|
Byte[] | 復号されたバイナリ |
Exceptions
Type | Condition |
---|---|
FileNotFoundException | ファイルが存在しない |