List all data files in a specific test folder.#

from sda.api.load import list_all_files_in_test

# Retrieve all files.
file_paths = list_all_files_in_test("T183")

print(f"Found {len(file_paths)} files. Here are the paths:")
for i, path in enumerate(file_paths):
    print(f"{i:03}: {path}")