Check that file exists: Difference between revisions

Content added Content deleted
Line 1,074: Line 1,074:


<lang powershell> Test-Path input.txt</lang>
<lang powershell> Test-Path input.txt</lang>


=={{header|Prolog}}==

<lang prolog>

exists_file('input.txt'),
exists_directory('docs').

exits_file('/input.txt'),
exists_directory('/docs').

</lang>


=={{header|PureBasic}}==
=={{header|PureBasic}}==