Module: Ftpd::DiskFileSystem::Append
- Includes:
- FileWriting, TranslateExceptions
- Included in:
- Ftpd::DiskFileSystem
- Defined in:
- lib/ftpd/disk_file_system.rb
Overview
DiskFileSystem mixin providing file appending
Instance Method Summary collapse
-
#append(ftp_path, stream) ⇒ Object
Append to a file.
Methods included from TranslateExceptions
included, #translate_exception
Methods included from FileWriting
Instance Method Details
#append(ftp_path, stream) ⇒ Object
Append to a file. If the file does not exist, create it. Called for:
-
APPE
If missing, then these commands are not supported.
189 190 191 |
# File 'lib/ftpd/disk_file_system.rb', line 189 def append(ftp_path, stream) write_file ftp_path, stream, 'ab' end |