This is my first post on stack.
I'm looking to gather a large amount of data from a multitude of files on PW so I can quantify a few things about the records.
The directories I'm working with have unique numbers and offer files that are all similar to files in other folders.
Is there a library from python I can use or any other useful tips for taking on this task? It could potentially save many hours of work if I can do this with code.
A pseudocode example may look like.
for element in dataField: search(folder) if folder found: search(file)
if file found
extract certain data from file X
extractedData.append(data)
Thank you, R