Quantcast
Channel: ntfs: finding all files sized at 64k intervals - Super User
Browsing latest articles
Browse All 2 View Live

Answer by rene for ntfs: finding all files sized at 64k intervals

You can use powershell for that:Get-ChildItem -Recurse | ForEach-Object { if (!($_.Length % 64kb)) { Write-Host $_.FullName } }The get-childitem cmdlet iterates over a folder (and optionally its...

View Article



ntfs: finding all files sized at 64k intervals

In Windows, is there a tool or way to easily find all files (maybe within a directory tree only) to list all files whose file size is a whole multiple of 64KB?I.e. those files that may have been...

View Article
Browsing latest articles
Browse All 2 View Live




Latest Images