Try another way to canonicalize the path that may work in Windoze
parent
ccd0c893ec
commit
e1427b4c3f
|
@ -187,7 +187,8 @@ namespace OpenSim
|
|||
else
|
||||
{
|
||||
m_log.InfoFormat("Adding {0} to configuration", Path.Combine(Util.configDir(), file));
|
||||
string path = Path.Combine(Util.configDir(), file);
|
||||
string base = Path.GetFullPath(Util.configDir());
|
||||
string path = Path.Combine(base, file);
|
||||
string[] paths = Util.Glob(path);
|
||||
foreach (string p in paths)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue