Re: Count of files to be transferred

2010-04-30 Thread Ryan Joseph
On Apr 30, 2010, at 12:54 PM, Matt McCutchen wrote: On Fri, 2010-04-30 at 12:13 +0700, Ryan Joseph wrote: I'm making a GUI for rsync and having some problems getting a reliable indication of the files that will be transferred (so I can make a progress bar from the results). I didn't see

Re: Count of files to be transferred

2010-04-30 Thread Robert DuToit
Hi All, On Apr 30, 2010, at 5:29 PM, Matt McCutchen wrote: On Fri, 2010-04-30 at 14:21 +0700, Ryan Joseph wrote: On Apr 30, 2010, at 12:54 PM, Matt McCutchen wrote: Rsync determines which of the files in the file list need a data transfer as it goes, so the only way to get the count in

Re: Count of files to be transferred

2010-04-30 Thread Ryan Joseph
On May 1, 2010, at 6:58 AM, Robert DuToit wrote: I don't know if this is what you are looking for but I have a GUI for rsync (Backuplist+) and now use unix find directoryPath | wc -l and it is very fast and gives you the total file count which reflects the rsync count in stats at the end

Re: Count of files to be transferred

2010-04-30 Thread Robert DuToit
On Apr 30, 2010, at 8:26 PM, Ryan Joseph wrote: On May 1, 2010, at 6:58 AM, Robert DuToit wrote: I don't know if this is what you are looking for but I have a GUI for rsync (Backuplist+) and now use unix find directoryPath | wc -l and it is very fast and gives you the total file count

Re: Count of files to be transferred

2010-04-30 Thread Ryan Joseph
On May 1, 2010, at 4:29 AM, Matt McCutchen wrote: On Fri, 2010-04-30 at 14:21 +0700, Ryan Joseph wrote: On Apr 30, 2010, at 12:54 PM, Matt McCutchen wrote: Rsync determines which of the files in the file list need a data transfer as it goes, so the only way to get the count in advance is to

Count of files to be transferred

2010-04-29 Thread Ryan Joseph
I'm making a GUI for rsync and having some problems getting a reliable indication of the files that will be transferred (so I can make a progress bar from the results). I didn't see rysnc offered this so my plan has been to get a list of files that will be transferred and count them as rsync

Re: Count of files to be transferred

2010-04-29 Thread Matt McCutchen
On Fri, 2010-04-30 at 12:13 +0700, Ryan Joseph wrote: I'm making a GUI for rsync and having some problems getting a reliable indication of the files that will be transferred (so I can make a progress bar from the results). I didn't see rysnc offered this so my plan has been to get a list of