Description
Create a new script with the following requirements:
Allow the user to specify a starting directory using the built-in Python input() function
Using os.walk()
Acquire the following information for each file (sub-directories included):
File Path (absolute path)
File Size
MAC Times (in human readable form)
SHA-256 Hash value
Store the results in a prettytable with the headings:
AbsPath, FileSize, LastModified, LastAccess, CreatedTime, HASH
Display the prettytable sorted by FileSize