5 lines
148 B
Text
5 lines
148 B
Text
Dim local As New IO.FileInfo("input.txt")
|
|
Console.WriteLine(local.Length)
|
|
|
|
Dim root As New IO.FileInfo("\input.txt")
|
|
Console.WriteLine(root.Length)
|