TempFileCollection.AddFile(String, Boolean) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コレクションが破棄された後、または Delete() メソッドが呼び出された場合にファイルを保持するかどうかを示す指定値を使用して、指定したファイルをコレクションに追加します。
public:
void AddFile(System::String ^ fileName, bool keepFile);
public void AddFile (string fileName, bool keepFile);
member this.AddFile : string * bool -> unit
Public Sub AddFile (fileName As String, keepFile As Boolean)
パラメーター
- fileName
- String
コレクションに追加するファイルの名前。
- keepFile
- Boolean
使用後もファイルを保持する場合は true
。ファイルを削除する場合は false
。
例外
例
次の例は、 メソッドを AddFile(String, Boolean) 使用して、コレクションに保持するファイルを追加する方法を示しています。 このコード例は、TempFileCollection クラスのために提供されている大規模な例の一部です。
// Name a file in the test directory.
string file2Name = "testDir\\test.txt";
// Add the file to the temp directory and indicate it is to be kept.
tfc.AddFile(file2Name, true);
' Name a file in the test directory.
Dim file2Name As String = "testDir\test.txt"
' Add the file to the temp directory and indicate it is to be kept.
tfc.AddFile(file2Name, True)
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET