HOW TO:在 Visual Basic 中判斷檔案大小
更新:2007 年 11 月
My.Computer.FileSystem.GetFileInfo 方法可以用來取得 FileInfo 物件,物件含有關於指定的檔案之資訊。
您可以使用 Length 屬性 (Property),判斷檔案大小 (以位元組為單位)。
注意事項: |
---|
根據您目前使用的設定或版本,您所看到的對話方塊選項,以及功能表命令的名稱和位置,可能會與 [說明] 中描述的不同。撰寫這個說明網頁時已將 [一般開發設定] 納入考慮。若要變更設定,請從 [工具] 功能表中選擇 [匯入和匯出設定]。如需詳細資訊,請參閱 Visual Studio 設定。 |
若要判斷檔案大小
使用 GetFileInfo 方法傳回檔案的 FileInfo 物件,可用來查詢資訊。此範例會取得 Testfile.txt 的 FileInfo 物件,並使用 Length 屬性顯示檔案大小 (以位元組為單位)。
Dim infoReader As System.IO.FileInfo infoReader = My.Computer.FileSystem.GetFileInfo("C:\testfile.txt") MsgBox("File is " & infoReader.Length & " bytes.")
請參閱
工作
參考
My.Computer.FileSystem.GetFileInfo 方法