File クラス
ファイル制御を行うクラス
継承関係
File
メンバー
メソッド
AddRootDirectory(String)
ファイル読み込み時に自動的に保管されるディレクトリを追加します。
AddRootPackage(String)
ファイルパッケージをパスワード無しで読み込みます。
AddRootPackageWithPassword(String, String)
ファイルパッケージをパスワード有りで読み込みます。
ClearRootDirectories()
追加されたディレクトリやファイルパッケージをすべて削除します。
Exists(String)
指定したファイルが存在するかどうかを検索します。
Pack(String, String)
指定したディレクトリのファイルをパックします。
PackWithPassword(String, String, String)
指定したディレクトリのファイルをパスワード付きでパックします。
メソッド
AddRootDirectory(String)
ファイル読み込み時に自動的に保管されるディレクトリを追加します。
public bool AddRootDirectory(string path)
パラメータ
path | 追加するディレクトリ |
戻り値
例外
型 | Condition |
---|---|
ArgumentNullException |
|
AddRootPackage(String)
ファイルパッケージをパスワード無しで読み込みます。
public bool AddRootPackage(string path)
パラメータ
path | 読み込むファイルパッケージのパス |
戻り値
例外
型 | Condition |
---|---|
ArgumentNullException |
|
AddRootPackageWithPassword(String, String)
ファイルパッケージをパスワード有りで読み込みます。
public bool AddRootPackageWithPassword(string path, string password)
パラメータ
path | 読み込むファイルパッケージのパス |
password | 読み込むファイルパッケージのパスワード |
戻り値
例外
型 | Condition |
---|---|
ArgumentNullException |
|
ClearRootDirectories()
追加されたディレクトリやファイルパッケージをすべて削除します。
public void ClearRootDirectories()
Exists(String)
指定したファイルが存在するかどうかを検索します。
public bool Exists(string path)
パラメータ
path | 存在を確認するファイルのパス |
戻り値
Pack(String, String)
指定したディレクトリのファイルをパックします。
public bool Pack(string srcPath, string dstPath)
パラメータ
srcPath | パックするファイルのディレクトリ |
dstPath | パックされたファイル名 |
戻り値
例外
型 | Condition |
---|---|
ArgumentNullException |
|
PackWithPassword(String, String, String)
指定したディレクトリのファイルをパスワード付きでパックします。
public bool PackWithPassword(string srcPath, string dstPath, string password)
パラメータ
srcPath | パックするファイルのディレクトリ |
dstPath | パックされたファイル名 |
password | かけるパスワード |
戻り値
例外
型 | Condition |
---|---|
ArgumentNullException |
|