6 lines
148 B
VB.net
6 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)
|