in reply to Large file upload

Is this a command-line app? You could use the Curses perl library, or even a simple print "\r$percentage complete";

If it is PerlTk, it comes with a progressbar widget, as I recall.

How are you sending the file? HTTP? FTP? You may need to install callbacks to your update routine, depending on the modules you use. Failing that, you could use threads and shared memory to tell your progress.

Replies are listed 'Best First'.
Re^2: Large file upload
by advait (Beadle) on Aug 07, 2007 at 22:46 UTC
    I am sending via HTTP....can you please suggest something now