I have issues with dropping my pdf output in the specified destination output folder from my code below, it does create the pdf output though, but never drops it in the specified destination folderfc = "Parcels"
field = "Block_No"
cursor = arcpy.SearchCursor(fc)
for row in cursor:
row.getValue(field)
val = row.getValue(field)
field = "Plot_No"
cursor = arcpy.SearchCursor(fc)
for row in cursor:
row.getValue(field)
val2 = row.getValue(field)
outName = "Block" + str(val) + "Plot_" + str(val2)
outName1 = str(val) + "Plot_" + str(val2) + ".pdf"
arcpy.CreateFolder_management("C:\GIS",outName)
arcpy.mapping.ExportToPDF(mxd,"C:\GIS\outName\outName1)
Any suggestions? Thanks