in reply to Sequentially numbering output files rather than overwriting an existing file
For one greater than the highest "$name$n.txt" file, something like kcott's solution below works.if (-f "$name.txt") { $n=1; $n++ while -f "$name$n.txt"; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Sequentially numbering output files rather than overwriting an existing file
by marinersk (Priest) on Jan 08, 2014 at 18:03 UTC |