;+ ;Function: ; poes_config_filedir.pro ; ;Purpose: ; Get the directory of the POES configuration file ; ;$LastChangedBy: egrimes $ ;$LastChangedDate: 2014-09-18 13:30:13 -0700 (Thu, 18 Sep 2014) $ ;$LastChangedRevision: 15821 $ ;$URL: svn+ssh://thmsvn@ambrosia.ssl.berkeley.edu/repos/spdsoft/tags/spedas_4_0/projects/poes/poes_config_filedir.pro $ ;- Function poes_config_filedir, app_query = app_query, _extra = _extra readme_txt = ['Directory for configuration files for use by POES'] If(keyword_set(app_query)) Then Begin tdir = app_user_dir_query('poes', 'poes_config', /restrict_os) If(n_elements(tdir) Eq 1) Then tdir = tdir[0] Return, tdir Endif Else Begin Return, app_user_dir('poes', 'POES Configuration', $ 'poes_config', $ 'POES configuration Directory', $ readme_txt, 1, /restrict_os) Endelse End