也許是好東西——Windows Script Host-3[擷取硬碟分區資訊]

來源:互聯網
上載者:User
window|硬碟 '************************************************
' File:    GetDriveX.vbs (WSH sample in VBScript)
' Author:  (c) G. Born
'
' Showing the properties of a drive by using
' FileSystemObject
'************************************************
Option Explicit

' Drive type constants
Const Unknown = 0
Const Removable = 1  ' Removable medium
Const Fixed = 2      ' Fixed medium (hard disk)
Const Remote = 3     ' Network drive
Const CDROM = 4      ' CD-ROM
Const RAMDisk = 5    ' RAM disk

Dim Text, Title, drive
Dim fso, oDrive                 ' Object variable

Dim drtype(6)
drtype(0) = " Unknown "
drtype(1) = " Removable "
drtype(2) = " Fixed "
drtype(3) = " Remote "
drtype(4) = " CDROM "
drtype(5) = " RAMDisk "

Text = "Drive" & vbCrLf & vbCrLf
Title = "WSH sample - by G. Born"

drive = ""
Do                      ' Query drive letter.
    drive = InputBox("Drive letter (e.g. A)", "Drive", "C")

    If drive = "" Then  ' Test for Cancel button.
        WScript.Quit
    End If

    drive = Left(drive, 1)  ' Extract drive letter.
    
    ' Valid drive name (between A and Z)?
    If Asc(UCase(drive)) < Asc("A") Or _
       Asc(UCase(drive)) > Asc("Z") Then
        MsgBox "Drive " & drive & " is illegal"
        drive = ""
    End If
Loop Until drive <> ""

' Create FileSystemObject object to access the file system.
Set fso = WScript.CreateObject("Scripting.FileSystemObject")

' Check whether drive exists.
If (Not fso.DriveExists(drive)) Then
    WScript.Echo "The drive " & drive & " doesn't exist"
    WScript.Quit
End If

Set oDrive = fso.GetDrive(drive)    ' Get Drive object.

If (oDrive.IsReady) Then
    Text = Text & UCase(drive) & " - " & oDrive.VolumeName & vbCrLf
    Text = Text & "Drive type: " & drtype(oDrive.DriveType) & vbCrLf
    Text = Text & "File system: " & oDrive.FileSystem & vbCrLf
    Text = Text + "Capacity: " & _
        FormatNumber(oDrive.TotalSize/(1024*1024), 0) & _
        " MB" & vbCrLf
    Text = Text & "Free: " & FormatNumber(oDrive.FreeSpace/1024, 0) _
           & " KB" & vbCrLf
Else
    Text = Text & "Drive not ready" & vbCrLf
End If

MsgBox Text, vbOKOnly + vbInformation, Title

'*** End



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.