Fexist

fexist

Description:
Function fexist checks if a specific file exists in the scriptfiles directory.
This function name starts with a lowercase letter.


Parameters:
(const pattern[])
string pattern The name of the file, optionally containing wild-cards characters.


Return Values:
The number of files that match the pattern.


Examples:
// Check, if "file.txt" exists
if(fexist("file.txt"))
{
	// Success
 
	// Print the success
	print("\"file.txt\" exists.");
}
else
{
	// Error
	print("\"file.txt\" does not exist.");
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.
  • fopen: Open a file (to read from or write to).
  • fclose: Close a file.
  • ftemp: Create a temporary file stream.
  • fremove: Remove a file.
  • fwrite: Write to a file.
  • fread: Read a file.
  • fputchar: Put a character in a file.
  • fgetchar: Get a character from a file.
  • fblockwrite: Write blocks of data into a file.
  • fblockread: Read blocks of data from a file.
  • fseek: Jump to a specific character in a file.
  • flength: Get the file length.
  • fmatch: Check, if patterns with a file name matches.