file operations
Posted
by devtech
on Stack Overflow
See other posts from Stack Overflow
or by devtech
Published on 2010-03-18T16:45:53Z
Indexed on
2010/03/18
16:51 UTC
Read the original article
Hit count: 327
perl
I am writing a script for renaming/copying the content of a file.
I have temp
& temp1
folders. Inside temp1
I have 1000 .txt
files with names 1.txt
, 2.txt
, 3.txt
... & in temp
folder I have sub directories named 1
, 2
, 3
.
In the folders 1
, 2
, 3
..., I have one file with extension java
or xml
.
My need is to automate the copy of the contents of the .txt
file, and paste into the respective file in the temp sub directory. Is it possible to do this using Perl?
© Stack Overflow or respective owner