9 lines
227 B
Text
9 lines
227 B
Text
Module ShowFileSize(filename as string) {
|
|
if exist(filename) then
|
|
print filename+" has size "+(filelen(filename))+" bytes"
|
|
else
|
|
print filename+ " not exist"
|
|
end if
|
|
}
|
|
ShowFileSize "checkthis.txt"
|
|
ShowFileSize "c:\ok.txt"
|