method
rmdir
ruby latest stable - Class:
Shell ::CommandProcessor
rmdir(*path)public
Same as Dir.rmdir, except multiple directories are allowed.
# File lib/shell/command-processor.rb, line 222
def rmdir(*path)
@shell.check_point
notify("rmdir #{path.join(' ')}")
for dir in path
Dir.rmdir(expand_path(dir))
end
Void.new(@shell)
end