8 lines
176 B
ObjectPascal
8 lines
176 B
ObjectPascal
|
|
##
|
||
|
|
uses System.IO;
|
||
|
|
|
||
|
|
FileExists('input.txt').Println;
|
||
|
|
FileExists('\input.txt').Println;
|
||
|
|
system.IO.Directory.Exists('docs').Println;
|
||
|
|
system.IO.Directory.Exists('\docs').Println;
|