Description
-
Saves part to a file.
Return Type
-
None
Syntax
-
object.Save Filename
The Save Method syntax has these parts:
| object |
An expression evaluating to an object
of type WebRequestUploadPart. |
| Filename |
Required. A String value. Determines
location where file will be saved. |
Remarks
-
Save method will save contents of uploaded part to
external file. Since parts are usually not encoded in any
way, this method will just copy data from the Request to a
file of your choice. If you want to provide same name as of
uploaded file, you should search part's Headers
for it (usually Content-Disposition header).
|