Displaying 4 results from an estimated 4 matches for "xyzw50genesis_abc".
Did you mean:
xyzw01genesis_abc
2017 Sep 28
5
rename multiple files by file.rename or other functions
Hi,
I have 50 files whose names are
XYZW01Genesis_ABC.mp3
XYZW02Genesis_ABC.mp3
.......
XYZW50Genesis_ABC.mp3
As you can tell, the only difference across the files are 01, 02,
03,....50.
I would like to rename them to
01Gen01.mp3
01Gen02.mp3
.......
01Gen50.mp3
If I store them in one folder and write an R code in that folder, how can
it be done?
Thanks,
John
[[alternative HTML version...
2017 Sep 28
0
rename multiple files by file.rename or other functions
...ile.rename(filename,paste("01Gen",fileno,".mp3",sep=""))
}
Jim
On Thu, Sep 28, 2017 at 7:37 PM, John <miaojpm at gmail.com> wrote:
> Hi,
>
> I have 50 files whose names are
>
> XYZW01Genesis_ABC.mp3
> XYZW02Genesis_ABC.mp3
> .......
> XYZW50Genesis_ABC.mp3
>
> As you can tell, the only difference across the files are 01, 02,
> 03,....50.
>
> I would like to rename them to
> 01Gen01.mp3
> 01Gen02.mp3
> .......
> 01Gen50.mp3
>
> If I store them in one folder and write an R code in that folder, how can
> i...
2017 Sep 28
1
rename multiple files by file.rename or other functions
...uot;,sep=""))
> }
>
> Jim
>
> On Thu, Sep 28, 2017 at 7:37 PM, John <miaojpm at gmail.com> wrote:
> > Hi,
> >
> > I have 50 files whose names are
> >
> > XYZW01Genesis_ABC.mp3
> > XYZW02Genesis_ABC.mp3
> > .......
> > XYZW50Genesis_ABC.mp3
> >
> > As you can tell, the only difference across the files are 01, 02,
> > 03,....50.
> >
> > I would like to rename them to
> > 01Gen01.mp3
> > 01Gen02.mp3
> > .......
> > 01Gen50.mp3
> >
> > If I store them in one fo...
2017 Sep 28
0
rename multiple files by file.rename or other functions
...////////////////////////////////////////////////////////////////////////////
<https://www.inbo.be>
2017-09-28 11:37 GMT+02:00 John <miaojpm at gmail.com>:
> Hi,
>
> I have 50 files whose names are
>
> XYZW01Genesis_ABC.mp3
> XYZW02Genesis_ABC.mp3
> .......
> XYZW50Genesis_ABC.mp3
>
> As you can tell, the only difference across the files are 01, 02,
> 03,....50.
>
> I would like to rename them to
> 01Gen01.mp3
> 01Gen02.mp3
> .......
> 01Gen50.mp3
>
> If I store them in one folder and write an R code in that folder, how can
> i...