Before inserting filestream data I'd like to check the following NTFS settings:
1) 8.3 naming status (this is disabled by using fsutil behavior set disable8dot3 1
)
2) last access status (this is disabled by using fsutil behavior set disablelastaccess 1
)
3) cluster size (this is set with format F: /FS:NTFS /V:MyFILESTREAMContainer /A:64K
)
The filestream recomendation is to disable (1) and (2) and to set (3) at 64kb.
But before setting this I'd like to know the existing settings. How do I check this? Answer can be in Delphi but not necessarly.