Помогите с C# переименовать файл

Dmitriy Ka

Client
Регистрация
03.05.2016
Сообщения
774
Благодарностей
517
Баллы
93
Помогите разобраться со сниппетом, я в них особа не шарю

Есть такой сниппет, для переименования файла:
System.IO.File.Move;

string oldFilePath = @"C:\OldFile.txt"; // Full path of old file
string newFilePath = @"C:\NewFile.txt"; // Full path of new file

if (File.Exists(newFilePath))
{
File.Delete(newFilePath);
}
File.Move(oldFilePath, newFilePath);

Почему-то он не работает в моем шаблоне, когда путь прописывается через переменную, ругается на строки, даже не дает стартануть шаблон:

System.IO.File.Move;

string oldFilePath = @"project.Variables["Profile_name"].Value"; // Full path of old file
string newFilePath = @"project.Variables["put_profile_spisok"].Value /Профиль project.Variables["shechik_profile"].Value .zpprofile"; // Full path of new file

if (File.Exists(newFilePath))
{
File.Delete(newFilePath);
}
File.Move(oldFilePath, newFilePath);

Почему он ругается на столбец 43 и 55 скрин - http://prntscr.com/g1f5j6

И еще сразу вопрос по поводу этой хрени, как ее правильно прописать в коде C# "project.Variables["put_profile_spisok"].Value /Профиль project.Variables["shechik_profile"].Value .zpprofile"

если путь состоит из : "Переменная - путь папки"/Профиль "Переменная счетчик".zpprofile" http://prntscr.com/g1f8wx
 

doc

Client
Регистрация
30.03.2012
Сообщения
8 685
Благодарностей
4 642
Баллы
113
C#:
string oldFilePath = project.Variables["Profile_name"].Value; // Full path of old file
string newFilePath = project.Variables["put_profile_spisok"].Value+"\\Профиль"+project.Variables["shechik_profile"].Value +".zpprofile";
 

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)