Windows 硬链接 - 为什么它占用与原始文件相同的空间

Windows 硬链接 - 为什么它占用与原始文件相同的空间

我使用 finddupe 工具来删除重复文件并节省硬盘空间。但检查操作前后,我没有看到释放任何可用空间 - 见下文。

有人能指出这里出了什么问题吗?

D:\TEMP\1>dir
30.09.2021  12:50        89 028 146 polycom-410-copy.zip
30.09.2021  12:50        89 028 146 polycom-410.zip
               2 File(s)    178 056 292 bytes
               2 Dir(s)  117 821 751 296 bytes free

D:\TEMP\1>finddupe -hardlink d:\temp\1 Duplicate: 'd:\temp\1\polycom-410-copy.zip' With:      'd:\temp\1\polycom-410.zip'
    Created hardlink

Files:   178056 kBytes in     2 files Dupes:    89028 kBytes in     1 files

D:\TEMP\1>dir  Volume in drive D is BACKUP  Volume Serial Number is B66C-A894

 Directory of D:\TEMP\1
30.09.2021  12:50        89 028 146 polycom-410-copy.zip
30.09.2021  12:50        89 028 146 polycom-410.zip
               2 File(s)    178 056 292 bytes
               2 Dir(s)  117 910 781 952 bytes free


D:\TEMP\1>finddupe -listlink d:\temp\1


Hardlink group, 2 of 2 hardlinked instances found in search tree:   "d:\temp\1\polycom-410-copy.zip"   "d:\temp\1\polycom-410.zip"

Number of hardlink groups found: 1

答案1

是什么让您认为没有释放空间?

# Before:
117 821 751 296 bytes free
# After:
117 910 781 952 bytes free
# Difference:
     89 030 656
# Your file size:
     89 028 146

您释放的恰好是一个文件的空间。

相关内容