HttpPostedFile.FileName Property

Gets the fully qualified name of the file on the client.

Namespace: System.Web
Assembly: System.Web (in system.web.dll)

public:
property String^ FileName {
	String^ get ();
}
/** @property */
public String get_FileName ()

public function get FileName () : String

Property Value

The 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.

No code example is currently available or this language may not be supported.
HttpFileCollection myFileColl = get_Request().get_Files();
HttpPostedFile myPostedFile = myFileColl.Get(0);
String myFileName = myPostedFile.get_FileName();

var myFileCollection : HttpFileCollection = Request.Files
var myPostedFile : HttpPostedFile = myFileCollection.Get(0)
var myFileName : String = myPostedFile.FileName


Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0

Community Additions

ADD
Show: