本文整理匯總了VB.NET中System.IO.FileStream.Length屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET FileStream.Length屬性的具體用法?VB.NET FileStream.Length怎麽用?VB.NET FileStream.Length使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.IO.FileStream
的用法示例。
在下文中一共展示了FileStream.Length屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1:
If s.Length = s.Position Then
Console.WriteLine("End of file has been reached.")
End If
示例2: MainClass
' 導入命名空間
Imports System
Imports System.IO
Public Class MainClass
Shared Sub Main()
Dim i As Integer
Dim theBytes(255) As Byte
For i = 0 To 255
theBytes(i) = CByte(i)
Next
Dim myFileStream As FileStream
Try
myFileStream = New FileStream("test.txt", FileMode.OpenOrCreate, FileAccess.Write)
myFileStream.Write(theBytes, 0, 256)
Finally
If Not (myFileStream Is Nothing) Then myFileStream.Close()
End Try
Dim theFile As FileStream
Try
theFile = New FileStream("test.txt",FileMode.Open, FileAccess.Read)
For i = 0 To (theFile.Length - 1)
Console.Write(theFile.ReadByte)
Next
Catch e As Exception
Throw e
Finally
If Not (theFile Is Nothing) Then theFile.Close()
End Try
End Sub
End Class