开发者

Programmatically determine a file's fragmentation status

开发者 https://www.devze.com 2022-12-25 05:28 出处:网络
Is it possible to determine a specific file\'s fragmentation status (that is, the amount of distinct fragments this file occupies)?

Is it possible to determine a specific file's fragmentation status (that is, the amount of distinct fragments this file occupies)? If so, how can this be done using .net?

The motivation is this: my application is keeping data in a FileStream, changing its size on-demand. This eventually causes the file to be fr开发者_运维知识库agmented. I'd like to monitor the file's fragmentation status, and based upon that - make a decision if the file should be copied and replaced by a new file (thus "defragmenting" it without making changes to the MFT).


This squarely falls in the "premature optimization" category. It is not at all guaranteed that you'll cause fragmentation, the disc may well have uncommitted clusters past the file end and often does. Perhaps more the point, there isn't anything in the .NET framework that allows you to detect or fix this. Accessing the volume's MFT requires unmanaged code and admin privileges.

Defragging a disk is a normal machine maintenance task. It became automatic with Win7.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号