This posts provides a piece of Python code to sort files, folders, and the combination of files and folders in a given directory. It works for Python 3.x. (It should work for Python 2.x, if you change the syntax of print statement to that of Python 2.x.)
Return the oldest and newest file(s), folder(s), or file(s) +folder(s) in a given directory and sort them by modified time.
import os # change this as the parent directory name of the files you would like to sort path = 'parent_directory_name' if (os.path.isdir(path) and (not os.path.exists(path))): print("the directory does not exist") else: os.chdir(path) # files varialbe contains all files and folders under the path directory files = sorted(os.listdir(os.getcwd()), key=os.path.getmtime) if len(files) == 0: print("there are no regular files or folders in the given directory!") else: #folder list directory_list = [] #regular file list file_list = [] for f in files: if (os.path.isdir(f)): directory_list.append(f) elif (os.path.isfile(f)): file_list.append(f) if len(directory_list) == 0: print("there are no folders in the given directory!") else: oldest_folder = directory_list[0] newest_folder = directory_list[-1] print("Oldest folder:", oldest_folder) print("Newest folder:", newest_folder) print("All folders sorted by modified time -- oldest to newest:", directory_list) if len(file_list) == 0: print("there are no (regular) files in the given directory!") else: oldest_file = file_list[0] newest_file = file_list[-1] print("Oldest file:", oldest_file) print("Newest file:", newest_file) print("All (regular) files sorted by modified time -- oldest to newest:", file_list) if len(file_list) > 0 and len(directory_list) > 0: oldest = files[0] newest = files[-1] print("Oldest (file/folder):", oldest) print("Newest (file/folder):", newest) print("All (file/folder) sorted by modified time -- oldest to newest:", files)
See below for a pic of the code.