Discussion of bugs and problems found in Altap Salamander. In your reports, please be as descriptive as possible, and report one incident per report. Do not post crash reports here, send us the generated bug report by email instead, please.
not sure if this was posted in the past. (my first post )
The drive information (Ctrl-F1) does not show more than 2TB. I set up a cifs storage system with about 4TB capacity. But only 2TB are shown.
In Explorer Windows 7 Ultimate it´s correct shown as 4TB
It always worked correctly here. Maybe it's because of too many Clusters.
Here's my Output:
BytePerSec: 512 SecPerClus: 8 Clusters: 732.571.647
Capacity: 2,73 TB Free: 141 GB Used: 2,59 TB
Problem is clear: GetDiskFreeSpace function returns DWORD values, so if there is more than 4294967296 clusters, the function has no chance to return correct value. We should use only GetDiskFreeSpaceEx variant which returns ULARGE_INTEGER values (64-bit unsigned int), but it does not return sector and cluster size, so old half-working GetDiskFreeSpace is unfortunately still needed. I'll make source code revision and correct this problem. Sorry for inconvenience and thanks for reporting this problem!