7 lines
85 B
Text
7 lines
85 B
Text
import Nanoquery.IO
|
|
|
|
def exists(fname)
|
|
f = new(File, fname)
|
|
|
|
return f.exists()
|
|
end
|