will this code allow me to measure the time it takes to transfer an image from one PC to another?
#! perl -w
use strict;
use Net::FTP;
use Time::HiRes qw(gettimeofday tv_interval);
my $ftp = Net::FTP->new("train1", Debug =>0) or die "Cannot connect to some.host.name: $@...
would something like this work to calculate the time it takes to transfer an image from one PC to another?
#! perl -w
use strict;
use Net::FTP;
use Time::HiRes qw(gettimeofday tv_interval);
my $ftp = Net::FTP->new("train1", Debug =>0) or die "Cannot connect to some.host.name: $@...
Hi,
i need to write a script to measure the time it takes to transfer large image sets between 2 PCs. i have set up two PCs both on Linux (fedora 6) connected together by a crossover cable. one is acting as a web server and the aim is to transfer a set of images using different protocols (FTP...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.