File_CreateDir(pDirName), Byte
pDirName: Name of the directory to create (maximum length 8 characters).
Return Status:
• cErrOK: Directory created successfully.
• cErrExists: Directory already exists.
• cErrDiskFull: Disk is full.
• cErrRootDirFull: Root directory is full.
• cErrInUse: File number is in use.
• cErrRWError: Read/write error.
Create Directory
This procedure creates a new directory with the specified name. The directory name can be a string with a maximum length of 8 characters.
Example:
File_CreateDir("NewFolder")
Note: This command automatically updates the file's "Created" property. If you don't set new values using File_TimeCreated(), the default values (File_TimeCreated(1,1,24,0,0,0)) will be used.
TftSetUp(0) 'Set screen TftResetScreen(BLACK) 'Reset screen TftSetSndFont(0,0) 'Set Font0 While File_Init() <> cErrOK : Wend 'Initialize SD Card TftPrintSndString("Sd Initialization OK",1,0,0,1,GREEN,BLACK,0) 'Confirm Initialize SD Card File_TimeCreated(2,10,24,11,32,55) 'Set file created property While File_Create("pic.log") <> cErrOK : Wend 'Create pic.log TftPrintSndString("pic.log create OK",1,0,1,1,GREEN,BLACK,0) 'Confirm create Pic.log File_Close() 'Close pic.log While File_Create("PiC1.TxT") <> cErrOK : Wend 'Create PiC1.TxT TftPrintSndString("PiC1.TxT create OK",1,0,2,1,GREEN,BLACK,0) 'Confirm create PiC1.TxT File_Close() 'Close PiC1.TxT File_CreateDir("MyFolder") 'Create MyFolder directory TftPrintSndString("MyFolder create OK",1,0,3,1,GREEN,BLACK,0) 'Confirm create MyFolder File_CreateDir("Test") 'Create Test directory TftPrintSndString("Test create OK",1,0,4,1,GREEN,BLACK,0) 'Confirm create Test |
|
Created with the Personal Edition of HelpNDoc: Benefits of a Help Authoring Tool