stardict get_user_config_dir

std::string get_user_config_dir()
{
const gchar *config_path_from_env = g_getenv(“STARDICT_CONFIG_PATH”);
if (config_path_from_env)
return config_path_from_env;
#ifdef _WIN32
std::string res = g_get_user_config_dir();
res += G_DIR_SEPARATOR_S “StarDict”;
return res;
#else
std::string res;
gchar *tmp = g_build_filename(g_get_home_dir(), “.stardict”, NULL);
res=tmp;
g_free(tmp);
return res;
#endif
}

這個函式應該滿單純的!

感謝你看到這裡,很快就可以離開了,但最好的獎勵行動就是按一下幫我分享或留言,感恩喔~

點我分享到Facebook

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *