usermac
usermac

Reputation: 11

JSON file name can have more than one period?

Such as bb.king.json — is this still proper?

Details. I have about 2,100 people I want to write out each person as a separate file with their details in json format. I will use their email address up to the "@" because that way they will all be unique file names. We use a [email protected] format. So the resulting file name would be elvis.presley.json as it sits on the file server.

Upvotes: 1

Views: 577

Answers (1)

smnbbrv
smnbbrv

Reputation: 24581

The only thing restricting you in the names of your files is your file system.

See limitations here.

JSON itself does not care about the name of the file.

That means yes - you can use names like bb.king.json

Upvotes: 2

Related Questions