method
gettextfile
gettextfile(remotefile, localfile = File.basename(remotefile))
public
Retrieves remotefile in ASCII (text) mode, storing the result in localfile. If localfile is nil, returns retrieved data. If a block is supplied, it is passed the retrieved data one line at a time.
Register or
log in
to add new notes.
ColinDKelley -
June 17, 2010
0 thanks
writes the file to disk even if you pass a block
I was surprised to find that the local file is opened and written even if you pass the block. If you’re local working directory isn’t writeable or doesn’t have the space, you’re out of luck.