I may have fixed this myself, though most likely not as elegant as some could have. here is what i have now to get just the creation date of a file with dashes instead of slashes!:
modDateFull = objFile.DateCreated
modDateNum = Replace(modDateFull,"/","-")
modDate = Left(modDateNum,9)...