0
votes
2answers
282 views

Modified time using os.stat in Python gets lower when copying files

The issue I am running into is part of using os.stat on a path (Take C:\myfile1.txt for example). When I run os.stat on this file and take the 9th element in the resulting list I get the modified time ...
1
vote
3answers
383 views

Python “if modified since” detection?

I wrote some code to tackle a work-related problem. The idea is that the program is in an infinite loop and every 10 minutes it checks a certain folder for new files and if there are any, it copies ...
0
votes
2answers
99 views

How to execute some code when a file is modified using python?

I want to execute one funtion each time a file gets written with new data (gets modified) and I'm using Python. How can I do it? Thanks in advance! :)
5
votes
4answers
1k views

how to determine if webpage has been modified

I have snapshots of multiple webpages taken at 2 times. What is a reliable method to determine which webpages have been modified? I can't rely on something like an RSS feed, and I need to ignore ...