Let the Infrastructure handle those details. If there needs to be any sort of validation or business rules, then just deal with it like regular data, because that is all it is. The only difference is you are probably saving this data in a different place, but that is an implementation detail.
Later on, you might want store those files in the database, or in version control... still implementation details that can be abstracted away into the infrastructure layer.
Update: Ok, where to physically save the file on the drive. If it were me, would not store them mixed in with my code, because that seems like it could get complicated quickly.
Say you wanted to start storing these files in version control, now you are mixing code in one version control system with data in another all in the same place. I would probably pick a place at least a little separated from your code:
Two thoughts:
Venus.Application
Venus.Domain
Venus.Infra
Venus.Tests
Venus.UI.Web
Venus.Files (or Data)
Or
Venus.Application
Venus.Domain
Venus.Infra
\Files (or Data)
Venus.Tests
Venus.UI.Web
I did do something like for uploading user xml files, and I did save the files in a folder like the second one, and it worked out alright for a while, but then I decided that those files were better off stored in the database as text then written out only when needed to be exported.