Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to copy/paste a file from one folder to another folder in windows using R, but it's not working. My code:

> file.rename(from="C:/Users/msc2/Desktop/rabata.txt",to="C:/Users/msc2/Desktop/Halwa/BADMASHI/SCOP/rabata.tx")

[1] FALSE
share|improve this question
Does the BADMASHI/SCOP folder already exist? – Dason Apr 22 '12 at 10:39
There's nothing wrong with your syntax; make sure the source file and dest folder already exist. – Hong Ooi Apr 22 '12 at 10:46
did you try file.copy instead of file.rename? – Henrik Apr 22 '12 at 11:12
In addition to the other comments, please state the exact error you got. – Paul Hiemstra Apr 22 '12 at 11:36
What does file.exists("C:/Users/msc2/Desktop/rabata.txt") tell you? – Tyler Rinker Apr 22 '12 at 12:00
show 2 more comments

1 Answer

up vote 7 down vote accepted

If you wanted a file.rename()-like function that would also create any directories needed to carry out the rename, you could try something like this:

my.file.rename <- function(from, to) {
    todir <- dirname(to)
    if (!isTRUE(file.info(todir)$isdir)) dir.create(todir, recursive=TRUE)
    file.rename(from = from,  to = to)
}

my.file.rename(from = "C:/Users/msc2/Desktop/rabata.txt",
               to = "C:/Users/msc2/Desktop/Halwa/BADMASHI/SCOP/rabata.txt")
share|improve this answer
Thanks sir..it works !!! – Sagar Nikam Apr 23 '12 at 10:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.