Retrieve Disk Capacity: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
m (Updated author and download links, and changed format of some pages.) |
m (Updated author links.) |
||
Line 1: | Line 1: | ||
{|align=right | |||
|<small>Author: [[{{ns:2}}:dirtydingus|dirtydingus]] ([[{{ns:3}}:dirtydingus|talk]], [[{{ns:-1}}:Contributions/dirtydingus|contrib]])</small> | |||
|} | |||
<br style="clear:both;"> | |||
== Description == | == Description == | ||
'''Note:''' GetDiskFreeSpaceEx is not supported by the first edition of Windows 95. | '''Note:''' GetDiskFreeSpaceEx is not supported by the first edition of Windows 95. | ||
Line 31: | Line 35: | ||
</highlight-nsis>Share & Enjoy | </highlight-nsis>Share & Enjoy | ||
Revision as of 03:03, 30 April 2005
Author: dirtydingus (talk, contrib) |
Description
Note: GetDiskFreeSpaceEx is not supported by the first edition of Windows 95.
Use GetDiskFreeSpace instead if you want your check to be compatible with this version.
This code is based on Sunjammer's code to CheckSpaceFree, but uses the same system function call to return the drive capacity instead.
The value returned is the amount in KBytes.
Notes
I suspect there may be problems if the drive size is >2Tb as then it will no longer be a 32bit integer.
Also on volumes with user quotas (ie NTFS servers) the amount may be less tham the actual amount - this warning is courtesy of the Microsoft documentation on the GetDiskFreeSpaceEx function.
The Script
!define sysGetDiskFreeSpaceEx 'kernel32::GetDiskFreeSpaceExA(t, *l, *l, *l) i' ; $1 - path to check (e.g. 'C:\') should work on \\computer\share\ also ; $1 - trashed returns vol space in KBytes ; (NB odd things may happen on >2Tb drives, have not checked) function GetCapacityFunc push $2 System::Call '${sysGetDiskFreeSpaceEx}(r1,.,.r2,)' ; convert the large integer byte values into managable kb System::Int64Op $2 / 1024 Pop $1 Pop $2 functionend
Share & Enjoy