- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
private static string GetRootedCurrentConfigurationFile(string configurationFile)
{
if (string.IsNullOrEmpty(configurationFile))
{
throw new ArgumentException(Resources.ExceptionStringNullOrEmpty, "configurationFile");
}
if (!File.Exists(configurationFile))
{
throw new FileNotFoundException(string.Format(CultureInfo.CurrentCulture, Resources.ExceptionConfigurationLoadFileNotFound, new object[] { configurationFile }));
}
if (!Path.IsPathRooted(configurationFile))
{
return Path.Combine(AppDomain.CurrentDomain.BaseDirectory, configurationFile);
}
return configurationFile;
}
3.14159265 30.07.2010 15:28 # 0
Nagg 30.07.2010 16:34 # 0
Lure Of Chaos 30.07.2010 19:22 # 0
TrueLauncher 30.07.2010 20:36 # 0
if (!File.Exists(configurationFile))
{
throw new FileNotFoundException(string.Format(Cult ureInfo.CurrentCulture, Resources.ExceptionConfigurationLoadFile NotFound, new object[] { configurationFile }));
}
Правильно Гавнакод!!!! Как у нас может найтись файл по куску пути?
И в комент даешь "минус" %username%?
bober_maniac 30.07.2010 21:38 # 0
Nagg 30.07.2010 21:44 # 0
bober_maniac 30.07.2010 21:52 # 0
Nagg 30.07.2010 22:25 # 0
Nagg 30.07.2010 22:30 # 0
TrueLauncher 30.07.2010 22:57 # 0
Вот вам доказательства и ответ их сапорта:
http://entlib.codeplex.com/Thread/View.aspx?ThreadId=221852
wvxvw 31.07.2010 00:51 # +1
Nigma143 01.08.2010 13:34 # 0