private void renameToolStripMenuItem_Click(object sender, EventArgs e) { ListView.SelectedIndexCollection indexCollection = this.listView1.SelectedIndices; if (indexCollection.Count != 0) { string tmpPath = Path.Combine(Directory.GetCurrentDirectory(), listView1.Items[indexCollection[0]].Text); inputForm form = new inputForm(); if (Directory.Exists(tmpPath)) { form.label1.Text = "Введите новое название для папки:"; form.typeOfNewFile = 3; } else if (File.Exists(tmpPath)) { form.label1.Text = "Введите новое название для файла:"; form.typeOfNewFile = 4; } form.oldPath = tmpPath; form.button1.Text = "Переименовать"; form.Show(); } else { MessageBox.Show("Сначала нужно выбрать объект!", "Ошибка!"); } }
private void newTextFileToolStripMenuItem_Click(object sender, EventArgs e) { inputForm form = new inputForm(); form.label1.Text = "Введите название для нового текстового файла:"; form.button1.Text = "Создать текстовый файл"; form.typeOfNewFile = 2; form.Show(); }
private void newFolderToolStripMenuItem_Click(object sender, EventArgs e) { inputForm form = new inputForm(); form.label1.Text = "Введите название для новой папки:"; form.button1.Text = "Создать папку"; form.typeOfNewFile = 1; form.Show(); }