vote up -14 vote down star

I am trying to get all the information about my hard drives displayed in a memo or some other control so I can see free space and total space on the drives. I know there is a shell call I can use, but cannot figure out the usage.

Can anyone give me an example or explain what I am doing wrong?

flag
9  
I agree with the downvote, Reallyethical has given a very comprehensive answer which works but hasn't been accepted because the questioner is expecting one line of code to be handed to him. I used the code supplied which compiled first time and gave me this answer in a memo: Drive: C: = Free Space :15089 Used Space: 22176 Total Space: 37266 – _J_ Oct 29 at 16:11
2  
"where do I put the function DriveSpace?" - it's a function, so add the declaration before the implementation section and put the actual code after thew implementation section. Basic stuff? – _J_ Oct 29 at 16:13
2  
Please refine your question, ReallyEthical has answered the original question in great detail. The original question was not a simple one to answer. If it is not clear you need to ask further questions. – Robert Love Oct 29 at 17:00
5  
Jim, my crystal ball tells me that the "red line" you're getting is because you pasted the code after the place where you used it. Functions need to be declared before they're used. Either paste the code before the place where you use it, or add a "forward declaration" of the function earlier in your code. If you're still having trouble figuring out how to order things in your source file, then please open a new question because you're having more trouble than can really be addressed properly in these comments. – Rob Kennedy Oct 29 at 17:17
6  
@Jim: I suggest that if you curb your attitude, show some humility and demonstrate some gratitude for the answers given to your questions, you might meet with more success on StackOverflow (and in life). Start by deleting your plagiarized answer and accepting ReallyEthical's. – Software Monkey Oct 29 at 21:19
show 10 more comments

1 Answer

vote up 60 vote down

I assume you mean Hard Drives. The simplest way is actually to use GetDiskFreeSpaceEx from the sysutils.pas file.

There are 2 parts to this example. the 1st is the important part using GetDiskFreeSpaceEX.

function DriveSpace(DriveLetter : String; var FreeSpace, UsedSpace, TotalSpace : int64) : Boolean;
begin
  Result := SysUtils.GetDiskFreeSpaceEx(Pchar(DriveLetter), UsedSpace, TotalSpace, @FreeSpace);

  if UsedSpace > 0 then
    UsedSpace := TotalSpace - FreeSpace;

  if not Result then
  begin
    UsedSpace   := 0;
    TotalSpace  := 0;
    FreeSpace   := 0;
  end;
end;

If you are going to request drives that you already know the drive letter for such as C: then that is all you need.

Usage would be something like:

var
  FS,
  US,
  TS : Int64
begin
  DriveSpace('C:', FS, US, TS);
  //Do something with the 3 variables.
end;

Having said that if you want to find the drives as well you could use something like this:

procedure ListDrivesOfType(DriveType : Integer; var Drives : TStringList);
var
  DriveMap,
  dMask : DWORD;
  dRoot : String;
  I     : Integer;
begin
  dRoot     := 'A:\'; //' // work around highlighting
  DriveMap  := GetLogicalDrives;
  dMask     := 1;

  for I := 0 to 32 do
  begin
    if (dMask and DriveMap) <> 0 then
      if GetDriveType(PChar(dRoot)) = DriveType then
      begin
        Drives.Add(dRoot[1] + ':');
      end;

    dMask := dMask shl 1;
    Inc(dRoot[1]);
  end;
end;

Note the DriveType integer, should be one of the following:

DRIVE_UNKNOWN     = 0;
DRIVE_NO_ROOT_DIR = 1;
DRIVE_REMOVABLE   = 2;
DRIVE_FIXED       = 3;
DRIVE_REMOTE      = 4;
DRIVE_CDROM       = 5;
DRIVE_RAMDISK     = 6;

(I have taken these straight out of windows.pas)


Now finally to answer your question (and this is very rough) the following would add information into a memo (called memo1) for all FIXED HARD DRIVES:

Procedure TAform.SomeNameICantThinkOfNow;
const
  BytesPerMB = 1048576;
var
  MyDrives   : TStringlist;
  I : Integer;
  FreeSpace,
  UsedSpace,
  TotalSpace : int64;
begin
  MyDrives := TStringlist.Create;
  ListDrivesOfType(DRIVE_FIXED, MyDrives);

  Memo1.Lines.Clear;

  for I := 0 to MyDrives.Count - 1 do
  begin
    FreeSpace  := 0;
    UsedSpace  := 0;
    TotalSpace := 0;

    if DriveSpace(MyDrives.Strings[I], FreeSpace, UsedSpace, TotalSpace) then
    begin
      FreeSpace  := FreeSpace  div BytesPerMB;
      UsedSpace  := UsedSpace  div BytesPerMB;
      TotalSpace := TotalSpace div BytesPerMB;

      Memo1.Lines.Add('Drive: ' + MyDrives.Strings[I] + ' = Free Space :' + IntToStr(FreeSpace) +
                      ' Used Space: ' + IntToStr(UsedSpace) + ' Total Space: ' + IntToStr(TotalSpace));
    end;
  end;
end;

I did say it would be nasty! I have just run this up in the IDE and it works, I have done as MB but really you should convert to Double and choose your formatting if doing as MB to be more precise as the example I have create above will of course just round up.

Hope this is of some small assistance.

Regards

RE

link|flag
1  
Do we really need that 1048576 in there?? That should be a constant! – Loren Pechtel Oct 30 at 0:26
1  
Oh, I think we can forgive the constant. :) @Reallyethical, I hope you enjoy the Reversal and Good Answer badges this answer got you. – John Rudy Oct 30 at 2:52
2  
Thanks Loren, no I should have used the Const that's the whole point of declaring it, I was rushing to code up an answer for him at the time, not that I would do again. Thanks for the feedback I have amended it. – Reallyethical Oct 30 at 11:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.