Determining file size in VB.NET

.net, file, text, vb.net

Solution

Dim myFile As New FileInfo("file.txt")
Dim sizeInBytes As Long = myFile.Length

Problem

How do I determine the size of a text file? I know that I could just count characters, but the file will be several MB's large.

Original source

Related problems