4 lines
284 B
PHP
4 lines
284 B
PHP
if (file_exists('input.txt')) echo 'input.txt is here right by my side';
|
|
if (file_exists('docs' )) echo 'docs is here with me';
|
|
if (file_exists('/input.txt')) echo 'input.txt is over there in the root dir';
|
|
if (file_exists('/docs' )) echo 'docs is over there in the root dir';
|