Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8051827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T07:23:27+00:00 2026-06-05T07:23:27+00:00

I have a directory which has 5 files named like this A.abcd (1).txt B.abcd

  • 0

I have a directory which has 5 files named like this

A.abcd (1).txt
B.abcd (1).txt
C.abcd (1).txt
D.abcd (1).txt
E.abcd (1).txt

I want to change the names of the file so that they should become like this :

A.defg.txt
B.defg.txt
C.defg.txt
D.defg.txt
E.defg.txt

In short I want to change abcd (1) to defg in the files.

I tried to run the system command from the R console.

system("mv A.abcd (1).txt A.defg.txt")

But I have to do this one by one.

Is there any way I can do it in one shot through R ??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T07:23:28+00:00Added an answer on June 5, 2026 at 7:23 am

    You can use file.rename() to rename files. And use sub with a regular expression for the text manipulation.

    x <- c("A.abcd (1).txt", "B.abcd (1).txt", "C.abcd (1).txt", "D.abcd (1).txt", "E.abcd (1).txt")
    newx <- sub("abcd \\(1\\)", "defg", x)
    newx
    [1] "A.defg.txt" "B.defg.txt" "C.defg.txt" "D.defg.txt" "E.defg.txt"
    
    
    ## The following is untested
    file.rename(x, newx)
    

    See ?files for help on this and the other base R file manipulation functions.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here i have one directory which has number of files. I want to fill
I have a directory in my mac which has files with following names -
I have a variable which has the directory path, along with the file name.
I have a project directory which has an .acignore file containing: out/* The project
If, for example, I have a directory which contains the following files: Test-20120626-1023.txt Test-20120626-0710.txt
I have a directory which contains several files, many of which has non-english name.
I have a directory of files for which I'd like to do in-place string
I have this code which is taking the name of files in a directory
I have a page which has a tree directory of people who work at
I have an Erlang application which has a dependency in its deps directory on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.