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 advanc
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 f
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
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
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
> > do a separate dry run. Then you could take
> As you might have guessed, that error is coming from the filesystem and
> is not rsync's fault; copying the file with cp should have similar
> chances of incurring the error. The symbolic name for errno 6 is ENXIO,
> and the Mac OS X read(2) man page documents two cases in which it
> occurs:
>
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 se