RosettaCodeData/Task/File-size/Visual-Basic-.NET/file-size.vb
2023-07-01 13:44:08 -04:00

5 lines
148 B
VB.net

Dim local As New IO.FileInfo("input.txt")
Console.WriteLine(local.Length)
Dim root As New IO.FileInfo("\input.txt")
Console.WriteLine(root.Length)