R에서 파일 이름을 바꾸는 방법(예제 포함)


다음 방법을 사용하여 R에서 파일 이름을 바꿀 수 있습니다.

방법 1: 파일 이름 바꾸기

 file. rename (from=' old_name.csv ', to=' new_name.csv ')

방법 2: 여러 파일의 템플릿 바꾸기

 file. rename ( list.files (pattern=' old '),
            str_replace(list. files (pattern=' old '), pattern=' old ', ' new '))

다음 예에서는 각 방법을 실제로 사용하는 방법을 보여줍니다.

예: 파일 이름 바꾸기

R에 4개의 CSV 파일이 포함된 폴더가 있다고 가정해 보겠습니다.

 #display all files in current working directory
list. files ()

"data1.csv" "data2_good.csv" "data3_good.csv" "data4_good.csv"

다음 코드를 사용하여 data1.csv 라는 파일의 이름을 data1_good.csv 로 바꿀 수 있습니다.

 #rename one file
file. rename (from=' data1.csv ', to=' data1_good.csv ')

#display all files in current working directory
list. files ()

"data1_good.csv" "data2_good.csv" "data3_good.csv" "data4_good.csv"

파일 이름이 성공적으로 변경되었습니다.

예: 여러 파일의 템플릿 교체

R에 4개의 CSV 파일이 포함된 폴더가 있다고 가정해 보겠습니다.

 #display all files in current working directory
list. files ()

"data1_good.csv" "data2_good.csv" "data3_good.csv" "data4_good.csv"

다음 코드를 사용하여 각 파일 이름의 “good”을 “bad”로 바꿀 수 있습니다.

 library (stringr)

file. rename ( list.files (pattern=' good '),
            str_replace(list. files (pattern=' good '), pattern=' good ', ' bad '))

#display all files in current working directory
list. files ()

"data1_bad.csv" "data2_bad.csv" "data3_bad.csv" "data4_bad.csv"

각 CSV 파일 이름에서 “good”이 “bad”로 바뀌었습니다.

관련 항목: R에서 str_replace를 사용하는 방법

추가 리소스

다음 튜토리얼에서는 R에서 파일을 사용하여 다른 일반적인 작업을 수행하는 방법을 설명합니다.

CSV 파일을 R로 가져오는 방법
Excel 파일을 R로 가져오는 방법
R에서 setwd/getwd를 사용하는 방법

의견을 추가하다

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다