This function confirms whether the file exists in the active project.
[Specification format]
project.File.Exists(fileName)
|
[Argument(s)]
|
|
fileName
|
Specify the full path of the file whose existence in the active project is to be checked.
|
[Return value]
If the specified file existed in the active project: True
If the specified file did not exist in the active project: False
[Detailed description]
- | This function confirms whether the file specified in fileName exists in the active project. |
[Example of use]
>>>project.File.Exists("C:/project/sample/src/test.c")
True
>>>
|