This is supposed to prefix the given path:
date = Date(2016, 6, 3)
const FILEDATE_FORMAT = "YYYYmmdd"
const FILE_PATH_FORMAT = "/YYYY/mm/"
joinpath(
"path-prefix",
Dates.format(DateTime(date), FILE_PATH_FORMAT),
Dates.format(DateTime(date), FILEDATE_FORMAT)
)
Expected: "/path-prefix/2016/06/20160603"
Actual: "/2016/06/20160603"
What is wrong here?