新客网WWW.XKER.COM:致力做中国最专业的网络学院!
学院: 操作系统 - 网络应用 - 服务器 - 网络安全 - 工具软件 - 办公软件 - Web开发 - 数据库 - 网页设计 - 图形图像 - 媒体动画 - 硬件学堂 - 存储频道 - QQ专区
您的位置:首页 > 软件开发 > .Net开发 > Asp.net教程 > 正文:在DELPHI中获得磁盘容量

在DELPHI中获得磁盘容量

新客网 XKER.COM 2006-06-29 来源: 收藏本文

使用如下API函数

BOOL GetDiskFreeSpace(

    LPCTSTR lpRootPathName, // address of root path
    LPDWORD lpSectorsPerCluster, // address of sectors per cluster
    LPDWORD lpBytesPerSector, // address of bytes per sector
    LPDWORD lpNumberOfFreeClusters, // address of number of free clusters 
    LPDWORD lpTotalNumberOfClusters  // address of total number of clusters 
   ); 
 

Parameters

lpRootPathName

Points to a null-terminated string that specifies the root directory of the disk to return information about. If lpRootPathName
 is NULL, the function uses the root of the current directory.

lpSectorsPerCluster

Points to a variable for the number of sectors per cluster.

lpBytesPerSector

Points to a variable for the number of bytes per sector.

lpNumberOfFreeClusters

Points to a variable for the total number of free clusters on the disk.

lpTotalNumberOfClusters

Points to a variable for the total number of clusters on the disk.

 

Return Values

If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.

 例子:

procedure TForm1.Button1Click(Sender: TObject);
var DriveString:String;
    sec1, byt1, cl1, cl2: LongWord;
    Disk_FreeSpace : real;

begin
  GetDiskFreeSpace('d:\', sec1, byt1, cl1, cl2);
  Disk_FreeSpace := (cl1 / (1024*1024*1024))*sec1*byt1;
  showmessage(format('该驱动器容量是%0.3fG',[Disk_FreeSpace]));
end;

   上面的程序是将数据从字节单位转换为G的,之所以这样做,是为了避免当磁盘容量大于DELPHI基本数据类型所能存储的最大值,避免溢出。如果想获得以字节为单位的,那么将遇到大数相乘的问题。   

   下面提供一个大数相乘的算法,他接收两个字符串,输出这个两个字符串的乘积(当然字符串里都是数字)

  function TForm1.XAddY(x, y: string): string;
var
   a,b,c:array[1..1000] of integer;
   i,j,k,l,m,code:integer;
   s,p,r:string;
begin
   s := x; //两个要相乘的字符串
   p := y;
   l:=length(s);
   for i:=l downto 1 do
    Val(s[i],a[l-i+1],code);
   m:=length(p);
   for i:=m downto 1 do
    Val(p[i],b[m-i+1],code);
   for j:=1 to m do
     for i:=1 to l do
     begin
       if c[i+j-1]+a[i]*b[j]<=9 then begin
        c[j+i-1]:=c[i+j-1]+a[i]*b[j];
        k:=i+j-1;
       end else begin
         c[j+i-1]:=c[i+j-1]+(a[i]*b[j]) mod 10;
         c[j+i]:=c[j+i]+ c[j+i-1] div 10+ (a[i]*b[j]) div 10;
         c[i+j-1]:=c[i+j-1] mod 10;
         k:=i+j;
       end;
     end;
     r := '';
     for i:=k downto 1 do
       r := r+IntToStr(c[i]);
   Result := r;

end;

     下面我们就可以通过使用大数相乘的算法的得到磁盘的容量(用字节表示)

procedure TForm1.Button2Click(Sender: TObject);
var
    sec1, byt1, cl1, cl2: LongWord;
    Disk_FreeSpace : string;

begin
  GetDiskFreeSpace('d:\', sec1, byt1, cl1, cl2);
  Disk_FreeSpace := XAddY(inttostr(cl1),inttostr(sec1*byt1));
  showmessage(format('该驱动器容量是%s字节',[Disk_FreeSpace]));
end;

 


 

程序完整的代码如下:

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Label1: TLabel;
    Label2: TLabel;
    Button2: TButton;
    Label3: TLabel;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
  private
    { Private declarations }
  public
    function XAddY(x : string;y:string) : string;
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
var DriveString:String;
    sec1, byt1, cl1, cl2: LongWord;
    Disk_FreeSpace : real;

begin
  GetDiskFreeSpace('d:\', sec1, byt1, cl1, cl2);
  Disk_FreeSpace := (cl1 / (1024*1024*1024))*sec1*byt1;
  showmessage(format('该驱动器容量是%0.3fG',[Disk_FreeSpace]));
end;

function TForm1.XAddY(x, y: string): string;
var
   a,b,c:array[1..1000] of integer;
   i,j,k,l,m,code:integer;
   s,p,r:string;
begin
   s := x; //两个要相乘的字符串
   p := y;
   l:=length(s);
   for i:=l downto 1 do
    Val(s[i],a[l-i+1],code);
   m:=length(p);
   for i:=m downto 1 do
    Val(p[i],b[m-i+1],code);
   for j:=1 to m do
     for i:=1 to l do
     begin
       if c[i+j-1]+a[i]*b[j]<=9 then begin
        c[j+i-1]:=c[i+j-1]+a[i]*b[j];
        k:=i+j-1;
       end else begin
         c[j+i-1]:=c[i+j-1]+(a[i]*b[j]) mod 10;
         c[j+i]:=c[j+i]+ c[j+i-1] div 10+ (a[i]*b[j]) div 10;
         c[i+j-1]:=c[i+j-1] mod 10;
         k:=i+j;
       end;
     end;
     r := '';
     for i:=k downto 1 do
       r := r+IntToStr(c[i]);
   Result := r;

end;

procedure TForm1.Button2Click(Sender: TObject);
var
    sec1, byt1, cl1, cl2: LongWord;
    Disk_FreeSpace : string;

begin
  GetDiskFreeSpace('d:\', sec1, byt1, cl1, cl2);
  Disk_FreeSpace := XAddY(inttostr(cl1),inttostr(sec1*byt1));
  showmessage(format('该驱动器容量是%s字节',[Disk_FreeSpace]));
end;

end.

 

收藏】 【评论】 【推荐】 【投稿】 【打印】 【关闭
发表评论
要记得去论坛讨论,点击注册新会员匿名评论
评论内容:不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
阅读排行
随机推荐
实用信息推荐