TempFileCollection::AddFile Method (String^, Boolean)
.NET Framework (current version)
Adds the specified file to the collection, using the specified value indicating whether to keep the file after the collection is disposed or when the Delete method is called.
Assembly: System (in System.dll)
Parameters
- fileName
-
Type:
System::String^
The name of the file to add to the collection.
- keepFile
-
Type:
System::Boolean
true if the file should be kept after use; false if the file should be deleted.
| Exception | Condition |
|---|---|
| ArgumentException | fileName is null or an empty string. -or- fileName is a duplicate. |
The following example shows the use of the AddFile(String^, Boolean) method to add a file that is to be kept to the collection. This code example is part of a larger example provided for the TempFileCollection class.
.NET Framework
Available since 1.1
Available since 1.1
Show: