[REBOL] ftp dir
From: rotenca::telvia::it at: 10-Oct-2001 2:23
1) How to make a change-dir on a ftp dir?
2) How to make a ftp directory listing with date-size without re-making
connections to the server?
Core user guide p. 12-41 makes only a bug example. Rebol gives error already
on Forall.
I know that all the info (date-size and so on) are already cached in the port.
How to read them in a "legal" mode?
------- UG 12-41:
To print a directory listing:
files: open ftp://ftp.site.com/pub/
forall files [
file: first files
info: info? file
print [file info/date info/size info/type]
]
---
Ciao (my english is bad)
Romano