func batchReadyIds()

in Sources/Confidence/EventStorage.swift [61:71]


    func batchReadyIds() throws -> [String] {
        try storageQueue.sync {
            let fileUrls = try FileManager.default.contentsOfDirectory(at: folderURL, includingPropertiesForKeys: nil)
            return fileUrls.filter { url in
                url.pathExtension == READYTOSENDEXTENSION
            }
            .map { url in
                url.lastPathComponent
            }
        }
    }