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

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

Gets the application data directory for a specific product of a specific company. 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 GetApplicationDataDirectoryForAllUsers ( string companyName, string productName ) : string
companyName string Name of the company.
productName string Name of the product.
Результат string
        public static string GetApplicationDataDirectoryForAllUsers(string companyName, string productName)
        {
            return GetApplicationDataDirectory(ApplicationDataTarget.Machine, companyName, productName);
        }

Same methods

Path::GetApplicationDataDirectoryForAllUsers ( ) : string
Path::GetApplicationDataDirectoryForAllUsers ( string productName ) : string