Work with files / Basic operations

<?php

$path = getcwd();
$filePath = $path . "/file.txt";
$exists = file_exists($filePath);

echo "exists is "var_dump($exists);