ID : 3506
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 : 3506