1

There is a massive project, about 300 separate word files.

They are all organized by date last modified, and it is important they stay that way.

They need to be modified to PDF, and then combined into a single PDF, all sorted by date last modified.

Any ideas? I know of several python tools to do the conversion process, but not based on date last modified.

would greatly appreciate some assistance.

1 Answers1

0

This problem could be approached by using a two dimensional array holding the name and date created then sorting( os.path.getmtime, sorted()). This may be of assistance. How to get file creation & modification date/times in Python? Also sorting dates is pretty simple: sort dates in python array

Community
  • 1
  • 1
Eli1296
  • 26
  • 2
  • 6