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)

适用于