| **Navigation:**  [[introduction.htm|Language Reference]] > 5 - Declaration Attributes > Variable and Entity Attributes >====== CREATE (allow data file creation) ====== | [[bindable set runtime expression string variables .htm|{{btn_prev_n.gif|Previous page}}]][[introduction.htm|{{btn_home_n.gif|Return to chapter overview}}]][[dim set array dimensions .htm|{{btn_next_n.gif|Next page}}]] | | || **CREATE** The **CREATE** attribute (PROP:CREATE) of a FILE declaration allows a disk file to be created by the CREATE statement from within the PROGRAM where the FILE is declared. This adds some overhead, as all the file information must be contained in the excutable program. **Example:** **Names FILE,DRIVER('Clarion'),****CREATE****     !Declare a file, allow create** **Rec    RECORD** **Name    STRING(20)** **       END** **      END**