I'm looking to create two lists of mxds, one where data driven pages is enabled, and one where it is not.
I have a single directory with 15 mxds inside, where 2-3 have data driven pages enabled. Is there a way for me to create two lists of MXDs based on whether or not ddp is enabled? I couldn't get it to work but I imagine it would look something like this:
#need to loop through mxd_list and grab mxds in a directory where ddpIsEnabled. If true the put in list
mxd_list = arcpy.ListFiles("*.mxd",isddpEnabled = False)
ddp_list = arcpy.ListFiles("*.mxd'",isddpEnabled = True)