This documentation is archived and is not being maintained.
HttpPostedFile.FileName Property
.NET Framework (current version)
Gets the fully qualified name of the file on the client.
Namespace:
System.WebAssembly:
System.Web (in System.Web.dll)
public string FileName { get; }
Property Value
Type:
System.StringThe name of the client's file, including the directory path.
The following code example demonstrates how to assign the name of an uploaded file (the first file in the file collection) to a string variable.
HttpFileCollection MyFileColl = Request.Files;
HttpPostedFile MyPostedFile = MyFileColl.Get(0);
String MyFileName = MyPostedFile.FileName;
.NET Framework
Available since 1.1
Return to top