Transferring Large Files??
[1/4] from: tmoeller::fastmail::fm at: 6-Jun-2006 13:12
Hi,
can anybody suggest me what is the best way to transfer lage files (> 2
GB) from a server A to a server B. It should just be a copy. I tried
read/binary together with write/binary as well as read/direct/binary
with write/direct/binary. I always get memory errors.
So, any way in REBOL to do this??? (Using \Core 2.5.6.3.1)
Thorsten
--
http://www.fastmail.fm - The professional email service
[2/4] from: pwawood:gm:ail at: 6-Jun-2006 19:26
Thorsten
Try this thread in the ML archive
http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-thread.r?m=rmlXJKQ
Peter
On Tuesday, Jun 6, 2006, at 19:12 Asia/Kuala_Lumpur, Thorsten Moeller
wrote:
[3/4] from: tmoeller:fastmail:fm at: 6-Jun-2006 14:19
Hi Peter,
thanks for the hint. Works as needed. I searched the list archive
before, but perhaps for the wrong key words.
Thorsten
On Tue, 6 Jun 2006 19:26:21 +0800, "Peter Wood" <pwawood-gmail.com>
said:
> Thorsten
> Try this thread in the ML archive
<<quoted lines omitted: 25>>
> To unsubscribe from the list, just send an email to
> lists at rebol.com with unsubscribe as the subject.
--
http://www.fastmail.fm - I mean, what is it about a decent email service?
[4/4] from: rebol-list2::seznam::cz at: 6-Jun-2006 22:21
Hello Peter,
Tuesday, June 6, 2006, 1:26:21 PM, you wrote:
PW> Thorsten
PW> Try this thread in the ML archive
PW> http://www.rebol.org/cgi-bin/cgiwrap/rebol/ml-display-thread.r?m=rmlXJKQ
PW> Peter
srcp: open/direct/binary update.url/:file
trgp: open/new/binary/write target.dir/:file
size: 0
while [not none? buff: copy/part srcp 10240][
insert trgp buff
size: size + length? buff
clear buff
]
close srcp
close trgp
PW> On Tuesday, Jun 6, 2006, at 19:12 Asia/Kuala_Lumpur, Thorsten Moeller
PW> wrote:
>>
>> Hi,
<<quoted lines omitted: 16>>
>> lists at rebol.com with unsubscribe as the subject.
>>
--
Best regards,
rebOldes -----------------[ http://oldes.multimedia.cz/ ]
Notes
- Quoted lines have been omitted from some messages.
View the message alone to see the lines that have been omitted