Poaster/lib/ensure_dir_exists.rb
2025-05-15 11:44:02 -05:00

7 lines
201 B
Ruby

def ensure_dir_exists(directory_path)
unless Dir.exist?(directory_path)
FileUtils.mkdir_p(directory_path)
spawn_toast 'Directory Created', %(Poaster created #{directory_path}.), 10
end
end