ID : 491
About File Path
A file path is designated as described below.
File Search
File search method varies depending on file designation description method.
To designate a file in the own folder.
A file name enclosed by double quotation mark shows a program that belongs in the same folder.
#Include "SampleProgram.pcs"
To designate a file in a lower level folder.
To designate a folder that belongs to the lower layer, writes as "Folder Name + \ + File name".
#Include "FolderA\SampleProgram.pcs"
To designate a file in an upper level folder.
To designate a folder that belongs to the upper layer, writes as "..\ + File name".
#Include "..\SampleProgram.pcs"
How to designate with the absolute path.
This method designates folders by means of the absolute path. Route is a source file folder.
Write "\ + File name" to designate.
#Include "\FolderA\SampleProgram.pcs"
Identifier is different according to the language settings. See "Display Language Setting for Pendant".
ID : 491