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