Fexist

From SA-MP Wiki

Jump to: navigation, search

fexist

Image:Farm-Fresh text lowercase.png Note: This function name starts with a lowercase letter.


Description:

Checks if a specific file exists in the scriptfiles directory.


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


Return Values:

The number of files that match the pattern.


Example Usage:

// 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.


  • ftemp: Create a temporary file stream.
  • fgetchar: Get a character from a file.
  • fseek: Jump to a specific character in a file.
  • fexist: Check, if a file exists.
  • fmatch: Check, if patterns with a file name matches.
In other languages