我可以使用 Mongodb 的 ObjectId 字符串作为 file/dir 名称吗?
Can I use Mongodb's ObjectId string as a file/dir name?
我想使用ObjectId作为服务器上一些相关文件的目录名,只是为了让每个目录都有一个唯一的名字。
但是,我不确定 ObjectId 是否始终是有效的 file/dir 名称?
它可以包含任何非法文件名符号吗?
我从 Mongodb 那里得到了答复。
是的,文件名是合法的。
The ObjectID is stored as a hexadecimal which will consist of the numbers 0-9 and letters A-F.
我想使用ObjectId作为服务器上一些相关文件的目录名,只是为了让每个目录都有一个唯一的名字。
但是,我不确定 ObjectId 是否始终是有效的 file/dir 名称? 它可以包含任何非法文件名符号吗?
我从 Mongodb 那里得到了答复。
是的,文件名是合法的。
The ObjectID is stored as a hexadecimal which will consist of the numbers 0-9 and letters A-F.