You are asked to implement a function that recursively walks through a directory and all its subdirectories, finds every .csv file, reads each line, extracts the second column, and sums all integer values found there. Files with other extensions should be ignored. The second column is guaranteed to contain integers. The final result is the…