Верно указанно имя файла, но vs его не видит. (C#)
Вот собственно сам кусок кода:
Код:
for (int i = 0; i < 30; i++)
{
text [i] = System.IO.File.ReadAllText("c:\Words_Bot\" + char.ConvertFromUtf32(bykba[i]));
}
{
text [i] = System.IO.File.ReadAllText("c:\Words_Bot\" + char.ConvertFromUtf32(bykba[i]));
}
слеши надо екранировать
Код:
text [i] = System.IO.File.ReadAllText("c:Words_Bot" + char.ConvertFromUtf32(bykba[i])) + ".txt";
Цитата: UserNet2008
Код:
text [i] = System.IO.File.ReadAllText("c:Words_Bot" + char.ConvertFromUtf32(bykba[i])) + ".txt";
Пробовал так. Не выходит.
Код:
text [i] = System.IO.File.ReadAllText(@"c:\Words_Bot\" + char.ConvertFromUtf32(bykba[i])) + ".txt";
or
text [i] = System.IO.File.ReadAllText(@"c:\Words_Bot\" + "a" + ".txt";
or
text [i] = System.IO.File.ReadAllText(@"c:\Words_Bot\" + "a" + ".txt";