Catel.IO.Path.GetApplicationDataDirectory C# (CSharp) Метод

GetApplicationDataDirectory() публичный статический Метод

Gets the application data directory for the company and product as defined the the assembly information of the entry assembly. If the entry assembly is null, this method will fall back to the calling assembly to retrieve the information. If the folder does not exist, the folder is automatically created by this method. This method returns a value like [application data]\[company]\[product name].
public static GetApplicationDataDirectory ( ) : string
Результат string
        public static string GetApplicationDataDirectory()
        {
            return GetApplicationDataDirectory(ApplicationDataTarget.UserRoaming);
        }

Same methods

Path::GetApplicationDataDirectory ( ApplicationDataTarget applicationDataTarget ) : string
Path::GetApplicationDataDirectory ( ApplicationDataTarget applicationDataTarget, string productName ) : string
Path::GetApplicationDataDirectory ( ApplicationDataTarget applicationDataTarget, string companyName, string productName ) : string
Path::GetApplicationDataDirectory ( string productName ) : string
Path::GetApplicationDataDirectory ( string companyName, string productName ) : string