MagnatBelka
Client
- Регистрация
- 01.02.2016
- Сообщения
- 25
- Благодарностей
- 0
- Баллы
- 1
Так как все-таки решить вопрос с ошибкой "CS1009" "Нераспознанная управляющая последовательность" [строка 5 столбец 35]?
Сниппет такой:
var files = Sistem.IO.Directory.GetFiles(@"d:\\4");
foreach (var file in files)
{
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.FileName =@"D:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe"; // Путь к программе
p.StartInfo.Arguments = string.Format("-l {0} d:\\5" + System.IO.Path.GetFileNameWithoutExtension(file) + "TestPDF.pdf", file);
p.Start();
p.WaitForExit(99999);
}
Сниппет такой:
var files = Sistem.IO.Directory.GetFiles(@"d:\\4");
foreach (var file in files)
{
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.FileName =@"D:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe"; // Путь к программе
p.StartInfo.Arguments = string.Format("-l {0} d:\\5" + System.IO.Path.GetFileNameWithoutExtension(file) + "TestPDF.pdf", file);
p.Start();
p.WaitForExit(99999);
}