Move1 [C#] 파일이름 변경하기 infodbbase.tistory.com/118 www.delftstack.com/ko/howto/csharp/how-to-rename-a-file-in-csharp/ using System.IO; private void button1_Click(object sender, EventArgs e) { string oldFile = null; string newFile = null; string filePath = null; oldFile = filePath + "\\" + oldFile; newFile = filePath + "\\" + newFile; System.IO.File.Move(oldFile, newFile); MessageBox.Show("Change!"); } 2021. 3. 16. 이전 1 다음