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!");
}
'프로그래밍 > C#' 카테고리의 다른 글
[C#] opendialog 함수, OFD 간단한 사용법 (0) | 2021.03.16 |
---|---|
[C#] 현재 경로, user 경로 등 유용한 경로 모음 (0) | 2021.03.16 |
[C#] F1을 누르면 메세지 박스가 실행되는 프로그램 (0) | 2021.03.16 |
[C#] 키보드 출력을 이용한 매크로 (0) | 2021.03.16 |
[C#][Selenium] 설치하기, 코스트코 로그인 만들기 (0) | 2021.03.13 |
댓글