Date as yyyymmddhhss Aug 23, 2021 extension Date { var yyymmddhhss: String { let dateFormatter = DateFormatter() dateFormatter.dateFormat = "yyyMMddhhmmss" return dateFormatter.string(from: self) } }