List of Files and Folders in Directory

list_of_files = os.listdir(absolute_path)
 
for file_name in list_of_files:
	print(file_name)