torch_concepts.data.utils.files_exist¶ files_exist(files: Sequence[str]) → bool[source]¶ Check if all files in a sequence exist. Parameters: files – Sequence of file paths to check. Returns: True if all files exist, False otherwise.Returns True for empty sequences (vacuous truth). Return type: bool