Automatically save files with a progressive number?

  • Thread starter Thread starter Vincent
  • Start date Start date
V

Vincent

Hi all,
I have to download a lot of single page .pdf files, all one page long;
they have sometimes the same name, others have long, quite
uncomprensible ones. But they all are pages from a single document.

What I would like to have is a utility (better a no install one) that,
when started, can take the place of the standard Windows "save as", and
that understands that if I am saving a pdf, no means what name it have,
in an empty folder, must save it as 001.pdf, if the folder already
contains a 001.pdf, knows that the file I'm saving now must have the
name 002.pdf, and so on.

I hope I have expressed myself well; English is not my mother language.

Does a program like I have descibed above exists?

Many thanks.
 
Vincent used his keyboard to write :
Hi all,
I have to download a lot of single page .pdf files, all one page long;
they have sometimes the same name, others have long, quite
uncomprensible ones. But they all are pages from a single document.

What I would like to have is a utility (better a no install one) that,
when started, can take the place of the standard Windows "save as", and
that understands that if I am saving a pdf, no means what name it have,
in an empty folder, must save it as 001.pdf, if the folder already
contains a 001.pdf, knows that the file I'm saving now must have the
name 002.pdf, and so on.

I hope I have expressed myself well; English is not my mother language.

Does a program like I have descibed above exists?

Many thanks.


Vincent,

I haven't heard of a freeware utility (or even a payware utility) that
does what you ask---but that does not mean that such a software does
not exist.

Would a file-renaming utility work for you?

Flexible Renamer
http://hp.vector.co.jp/authors/VA014830/english/FlexRena/
 
Anonymous ha scritto:

First, thanks for your answer
I haven't heard of a freeware utility (or even a payware utility) that
does what you ask---but that does not mean that such a software does
not exist.

But I understand I make a very peculiar quest
Would a file-renaming utility work for you?

Maybe it will be useful, but I found easier to rename manually all
files; so I've made my work

Thanks again; as I said, I needed a very peculiar piece of software,
maybe it doesn't exist
:-)

Happy "Pasqua", so we call it here in Italy ... ciao.
 
I hope I have expressed myself well
Perfectly.

Does a program like I have descibed above exists?

I don't know of one that does *exactly* what you want, but Free
Download Manager will rename files after the first one of the same
name has been downloaded. It gives you a choice of abandoning the
download, resuming it or renaming the new file, which is the choice
you want.

It's free, it works, and it's almost what you want.
 
Vincent said:
Hi all,
I have to download a lot of single page .pdf files, all one page long;
they have sometimes the same name, others have long, quite
uncomprensible ones. But they all are pages from a single document.

What I would like to have is a utility (better a no install one) that,
when started, can take the place of the standard Windows "save as", and
that understands that if I am saving a pdf, no means what name it have,
in an empty folder, must save it as 001.pdf, if the folder already
contains a 001.pdf, knows that the file I'm saving now must have the
name 002.pdf, and so on.

I hope I have expressed myself well; English is not my mother language.

sodding deep fried wombles
why do NESBies always have to explain, especially when they are generally
less slack have better eyesight and are less lysdecix than me?
lredd dlsck <- thats what it came out as first

(NESB - Non English Speaking Background )
Does a program like I have descibed above exists?

Yes, at least one :-) but it breaks too easily and you cannot have it.

The save as is a standard dialog and is used for other things
by windows, some uses don't seem to be documented
Things that hook the dialog tend to either interfere
or not work with different versions of windows.
http://www.google.com.au/search?hl=en&q=32770+dialog&meta=

An external application to monitor any save as popping up will not be in the
process space, it then does not have direct knowledge of what the
application believes is the current directory. It can be found but
not in a particularly standard way, this is fragile.

Another way is to have a monitor on one directory which automagically
renames
all files dropped or created in it. After the save rather than in the save,
then bulk rename afterwards.

Right now you want something to autoincrement and autoname files,
but do you want something that may inadvertently rename files
you dont want incremented?..another problem is the way the save as dialog
may interpret fields and directories if the user clicks on save while it is
being updated,
you files could end up not where you expect.

The best option I have is a panel popup when save as is showing,
the user knows they aren't doing anything with the dialog, or
causing anything else to do so, so they can now safely press the
'increment filename' button.

The above isn't necessarily accurate and may be ignoring something
simple but not revealed to me in a quick search. I would really like
to know if it is wrong, or find a reliable alternative.

Renaming many files can be a pain, on the other hand if
a set of files aren't worth the time to rename they probably aren't
really worth the time to get and store. Computers and DVD-r make
it to too easy to be a packrat.
With high speed internet a link and a few pertinent words in a small note
may be more appropriate. Catch-22, if you have the speed to
get bulk data to store, you don't need to store it :-)

If there was enough interest I could maybe look at and
polish up what I have. Otherwise it will remain at priority #32770
right behind world domination and finding a decent cup of hot tea.:-)
 
In message <[email protected]>, Terry
sodding deep fried wombles
why do NESBies always have to explain, especially when they are generally
less slack have better eyesight and are less lysdecix than me?
lredd dlsck <- thats what it came out as first

(NESB - Non English Speaking Background )

I think OP did well enough.

Yes, at least one :-) but it breaks too easily and you cannot have it.

In which case I have an alternative suggestion, that works but is far
from simple. It achieves the objective, saving multiple versions, but
not in the way the OP described it. It's also far from free unless the
OP already has Windows 2003 Server, so I don't propose to discuss it in
this newsgroup.

If the OP sets up a Sharepoint server (which requires W2K or 2K3 Server
software) it is possible to have the server automatically create
multiple backup versions of each document as it is saved. These can be
retrieved later. Although there are advantages to using the latest
Microsoft Office version with Sharepoint it will work with pretty much
any recent Windows program.

Followups set to poster.
 
dsmey said:
It would not be that hard to program such a thing with AutoIt

http://www.autoitscript.com/autoit3/

This looks like an excellent program. Thanks.

It looks like what the original poster wants could be easily done with
this.

Alternatively, it can probably be done with a bit of batch scripting
using the %RANDOM% variable and using a temporary download directory.
Check download directory for anything, then move it to the proper
directory and name it %RANDOM%.*. Or something like that, anyway.
 
Back
Top