I do not have space anywhere in my filesystem to store short file names.
How can I properly handle short file names in my Windows XP FSD?
Thanks,
Jeremy
I do not have space anywhere in my filesystem to store short file names.
How can I properly handle short file names in my Windows XP FSD?
Thanks,
Jeremy
Three options:
foobarbazqux.txt -> foob#4E8.txt
foobarbazquux.txt -> foob#4E8.txt
might occur. I believe you can just lift the UDF algorithm if you want
it, though of course IANAL and you probably have some nearby.
Dan Lovinger
Microsoft Corporation
This posting is provided “AS IS” with no warranties and confers no
rights.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Jeremy Sherrill
Sent: Thursday, February 19, 2004 2:19 PM
To: Windows File Systems Devs Interest List
Subject: [ntfsd] short file names
I do not have space anywhere in my filesystem to store short file names.
How can I properly handle short file names in my Windows XP FSD?
Thanks,
Jeremy
Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17
You are currently subscribed to ntfsd as: xxxxx@windows.microsoft.com
To unsubscribe send a blank email to xxxxx@lists.osr.com
> 3) Synthesize them on the fly through a hashing mechanism. For example,
The source code for any open source UNIX-based DOS VM (“dosemu”, “dosbox”)
etc - can also be the source of the algorithm.
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com
The only thing I’d note is that you want as much information in the hash
as you can. For instance, you want more than three hexadecimal
characters (0-9A-F). 0-9A-Z would be better; UDF’s base41 is about as
good as I could come up with at the time. The more bits of your hash
that you can represent, the fewer collisions you can expect.
Dan Lovinger
Microsoft Corporation
This posting is provided “AS IS” with no warranties and confers no
rights.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Maxim S. Shatskih
Sent: Friday, February 20, 2004 10:28 AM
To: Windows File Systems Devs Interest List
Subject: Re: [ntfsd] short file names
- Synthesize them on the fly through a hashing mechanism. For
example,
The source code for any open source UNIX-based DOS VM (“dosemu”,
“dosbox”)
etc - can also be the source of the algorithm.
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com
Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17
You are currently subscribed to ntfsd as: xxxxx@windows.microsoft.com
To unsubscribe send a blank email to xxxxx@lists.osr.com