SpecialDirectories.CurrentUserApplicationData Property

Definition

Gets a path name pointing to the Application Data directory for the current user.

public:
 static property System::String ^ CurrentUserApplicationData { System::String ^ get(); };
public static string CurrentUserApplicationData { get; }
member this.CurrentUserApplicationData : string
Public Shared ReadOnly Property CurrentUserApplicationData As String

Property Value

String

The path to the Application Data directory for the current user.

Exceptions

The path is empty, usually because the operating system does not support the directory.

Examples

This example displays the path to the Application Data directory for the current user in a MessageBox.

MsgBox(My.Computer.FileSystem.SpecialDirectories.CurrentUserApplicationData)

Remarks

The SpecialDirectories object contains paths to commonly referenced directories.

Applies to

See also