TempFileCollection.AddFile(String, Boolean) メソッド

定義

コレクションが破棄された後、または 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

例外

fileNamenull または空の文字列です。

- または -

fileName は重複しています。

次の例は、 メソッドを 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)

適用対象