What is a good way to convert a file path (URI) into a System.Guid? I'd like to minimize the possibility of a collision, but I'm happy with a reasonably unique hashing (probably never more than a few dozen/hundred items in the database)
|
There is no need. Hash URI with md5 or sha1 and that's all. GUIDs are not for hashing things. They meant to be created unique independently of everything else. |
|||||||||||||||
|
|
The "correct" way (according to RFC 4122 ยง4.3) is to create a name-based UUID. The advantage of doing this (over just using a MD5 hash) is that these are guaranteed not to collide with non-named-based UUIDs, and have a very (very) small possibility of collision with other name-based UUIDs. There's no native support in the .NET Framework for creating these, but by using code similar to this, you could create a GUID as follows:
To reduce the risk of collisions with other GUIDs even further, you could create a private GUID to use as the namespace ID (instead of using the URL namespace ID defined in the RFC). |
|||
|
|
|
If you have the option of a centralized registry/database, you could maintain a GUID <-> URL resolver and generate a new GUID for each URL you need. This would use GUIDs the way they are intended, minimizing probability of collision with natively-generated GUIDs. |
|||
|