FExists (LabVIEW Manager Function)
- Mise à jour2025-07-30
- Temps de lecture : 1 minute(s)
int32 FExists(path);
Purpose
Returns information about the specified file or directory. It returns less information than FGetInfo, but it is much quicker on most platforms.
Parameters
| Name | Type | Description |
|---|---|---|
| path | Path | Path of the file or directory about which you want information. |
Return Value
int32, which can contain the following values.
| Value | Description |
|---|---|
| kFIsFile | Specified item is a file. |
| kFIsFolder | Specified item is a directory or folder. |
| kFNotExist | Specified item does not exist. |