Drive C:\Users\Drive 폴더에 100개의 파일이 있습니다. 파일 이름 시작 부분에 접미사 "D_"를 추가하여 각 파일의 이름을 바꾸고 싶습니다.
Ex: Original File name : file1.txt
After suffix name : D_file1.txt
배치 스크립트 명령을 사용하여 이름을 바꾸고 있습니다.
for %%a in (Users\Drive\*) do REN D_%%a.
But output is showing as D_Users\Drive\file1.txt. Not sure how to fix this.