Module: Ftpd::DiskFileSystem::Mkdir
- Includes:
- TranslateExceptions
- Included in:
- Ftpd::DiskFileSystem
- Defined in:
- lib/ftpd/disk_file_system.rb
Overview
DiskFileSystem mixing providing mkdir
Instance Method Summary collapse
-
#mkdir(ftp_path) ⇒ Object
Create a directory.
Methods included from TranslateExceptions
included, #translate_exception
Instance Method Details
#mkdir(ftp_path) ⇒ Object
Create a directory. Called for:
-
MKD
If missing, then these commands are not supported.
215 216 217 |
# File 'lib/ftpd/disk_file_system.rb', line 215 def mkdir(ftp_path) Dir.mkdir (ftp_path) end |