Duplicating text/html templates - how ?

  • Thread starter Thread starter John Fitzsimons
  • Start date Start date
J

John Fitzsimons

I was thinking of doing a project yesterday (since abandoned) that
required multiple copies of a template. In text or html. Is there a
quick and easy way to do this ? A utility perhaps ?

I know I can create a file, go File - Save as and change the
filename, but that would get very tedious after a while. Particularly
if I wanted dozens of identical files.

Suggestions anyone ?

Regards, John.
 
John Fitzsimons said:
I was thinking of doing a project yesterday (since
abandoned) that required multiple copies of a template. In
text or html. Is there a quick and easy way to do this ? A
utility perhaps ?

I know I can create a file, go File - Save as and change
the filename, but that would get very tedious after a
while. Particularly if I wanted dozens of identical files.

Suggestions anyone ?

Regards, John.

Hi, John, do you use AutoIt? If you do, here are a few lines
that would work:

- change "text.txt" in "\text.txt" into the filename you want to
copy;
- change "text" in "\text" into the destination filename;
- change ".txt" into the destination filename extension would
do.
- change "5" in "$num = 5" into the number of file you want to
copy.


;================
$num = 1
do
FileCopy (@ScriptDir & "\text.txt", @ScriptDir & "\text" & $num
&".txt")

$num = $num + 1
until $num = 5

Exit
; ==========================



--
RL
Unofficial Adaware Updater; Little (File) Backer Upper; Uptime
Quickie; Tray Quickie; Google Quickie; Lefty Animated Cursors;
http://home.earthlink.net/~ringomei/page2.html
*******************************************
Places that list the Pricelessware annual voting results and
information:
http://www.pricelessware.org, http://lesspriceware.netfirms.com/
 
Hi, John, do you use AutoIt? If you do, here are a few
lines that would work:

- change "text.txt" in "\text.txt" into the filename you
want to copy;
- change "text" in "\text" into the destination filename;
- change ".txt" into the destination filename extension
would do.
- change "5" in "$num = 5" into the number of file you want
to copy.


;================
$num = 1
do
FileCopy (@ScriptDir & "\text.txt", @ScriptDir & "\text" &
$num &".txt")

$num = $num + 1
until $num = 5

Exit
; ==========================


In fact, just to have fun, I made one, here it is :-)


http://home.earthlink.net/~rl_freeware/FileGenerater.exe
(96kb)



--
RL
Unofficial Adaware Updater; Little (File) Backer Upper; Uptime
Quickie; Tray Quickie; Google Quickie; Lefty Animated
Cursors;
http://home.earthlink.net/~ringomei/page2.html
*******************************************
Places that list the Pricelessware annual voting results and
information:
http://www.pricelessware.org,
http://lesspriceware.netfirms.com/
 
martedì 06/lug/2004 _R. L._ in



R. L., you rock! :))
thanks :-)
How many of you there are?
Unfortunately, only one
It's impossible that only one human being can produce so
many works in so little time! ;-)

:-P hmmm...you assume that I am a human being....a good sign
.... ;-)




--
RL
Unofficial Adaware Updater; Little (File) Backer Upper; Uptime
Quickie; Tray Quickie; Google Quickie; Lefty Animated
Cursors;
http://home.earthlink.net/~ringomei/page2.html
*******************************************
Places that list the Pricelessware annual voting results and
information:
http://www.pricelessware.org,
http://lesspriceware.netfirms.com/
 
John Fitzsimons said:
I was thinking of doing a project yesterday (since abandoned) that
required multiple copies of a template. In text or html. Is there a
quick and easy way to do this ? A utility perhaps ?

I know I can create a file, go File - Save as and change the
filename, but that would get very tedious after a while. Particularly
if I wanted dozens of identical files.

Suggestions anyone ?

Regards, John.

RJH Extensions includes a right-click option in Explorer to duplicate one or
more files in the same directory, adding a bracketed (1) to the duplicate.
You could double up by multiplying the two files to four, four to eight etc.
The program adds other useful right-click functions including command
prompt, saving path to clipboard, file encryption and printing/saving
directory list.
http://www.rjhsoftware.com

===

Frank Bohan
¶ There are two instruments worse than a clarinet. Two clarinets.
 
Back
Top