I have a list of file path within a sub-directory. How can I find the created date for each of the file paths? I used the code below to get all the files within each sub-directory using Python:
def find(pattern, path):
    result = []
    for root, dirs, files in os.walk(path):
        for name in files:
            if fnmatch.fnmatch(name, pattern):
                result.append(os.path.join(root, name))
    return result
find(pattern, Path)
 
     
    