I download many csv files daily. Because of the performance, without opening them, I like to quickly check if these csv files are modified or changed.
I did some tests and get to know that even a csv file is not changed not modified, that is, no new lines are added into it, the "Date modified" of the file is always updated when I downloaded it. So, it means, it is not a good idea to check "Date modified" property of the csv file to tell the file modification.
any suggestion or sample code in python,
Also, If I want to get all new added lines, how could I do in python in the fastest way?
Thanks a lot