|
|
|
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#16
|
||||
|
||||
|
Code:
#define MyAppName "MyApp"
#define MyAppVersion "1.0"
[Setup]
AppName={#MyAppName}
AppVersion={#MyAppVersion}
DefaultDirName={code:GetMaxFreeSpace}\{#MyAppName}
[Languages]
Name: "default"; MessagesFile: "compiler:Default.isl"
[ Code]
#ifdef UNICODE
#define AW "W"
#else
#define AW "A"
#endif
function GetDriveType(lpRootPathName: string): UINT;
external 'GetDriveType{#AW}@kernel32.dll stdcall';
function GetMaxFreeSpace(S: String): String;
var
i: Integer;
sDriveRoot: string;
iLastMax, iNewMax, iTotal: Cardinal;
begin
iLastMax:=0;
for i := 1 to 26 do
begin
sDriveRoot := Chr(i+64)+':';
if GetDriveType(sDriveRoot) = 3 then
begin
GetSpaceOnDisk(sDriveRoot, True, iNewMax, iTotal);
if iLastMax < iNewMax then
begin
iLastMax := iNewMax;
Result:=sDriveRoot;
end;
end;
end;
end;
__________________
Practice makes perfect. |
| The Following User Says Thank You to JRD! For This Useful Post: | ||
Chayan Manna (04-07-2017) | ||
| Sponsored Links |
|
#17
|
||||
|
||||
|
Quote:
Will try it.
|
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Doom 3 (KillaWare version) DVD impossible to update and/or install Resurrection of Ev | zlxvw | PC Games | 2 | 18-04-2005 09:56 |
| DSM3 Install Questions | deerayrose | PS2 Games | 5 | 11-04-2004 19:52 |
| Alternative points for Origa chip install. | Civic2000 | PS2 Games | 4 | 12-01-2002 01:19 |
| Pool of Radiance Install Directory Problem.. HELP!! | EEpyon2k | PC Games | 1 | 20-12-2001 10:00 |
| Diablo II (backup) install problems... | Maketty | PC Games | 2 | 03-08-2001 15:22 |