Monday 9 November 2020

comparing csv files on local machine with those on server

import filecmp
comparison = filecmp.dircmp(dir_local, dir_server)
comparison.report_full_closure()

I want to compare all csv files kept on my local machine to files kept on a server. The folder structure is the same for both of them. I only want to do a data comparison and not metadata (like time of creation etc.). I am using filecmp but it seems to perform metadata comparison. Is there away to do what I want?



from comparing csv files on local machine with those on server

No comments:

Post a Comment