CreateDirectory

TwinCAT TIA
Local File and directory access Folder

ns=2;s=DEPRAG Smart/Local/FileAndDirectoryAccess/DirectoryAccess/CreateDirectory

The command creates the specified directory.

Parameters:

    FullPath
    Full path of the directory to be created.

Returns:

Examples:

In addition to the parameters already explained, the following variables must be created / transferred for the implementation in TwinCAT 3:

Beckhoff parameter:

    bDirectoryAccessCreateDirectory
    A boolean variable that can be used to trigger the execution of the CreateDirectory command.
    OutputDataDirectoryAccessCreateDirectory
    An instance of "ST_VoidOutputData" into which the return value of the CreateDirectory method is written.
    hrDirectoryAccessCreateDirectory
    This can be used to monitor the execution of the command. Error codes have the type "HRESULT".
    fbDirectoryAccess
    An instance of the "FB_DirectoryAccess" function block supplied with the DEPRAG Smart library.
    sFullPath
    A STRING variable containing the full path of the directory.
    ConnectionHandle
    "ConnectionHandle" received when establishing a connection between DEPRAG Smart Server and your OPC UA client.


VAR
     bDirectoryAccessCreateDirectory      : BOOL;
     OutputDataDirectoryAccessCreateDirectory   : ST_VoidOutputData;
     hrDirectoryAccessCreateDirectory     : HRESULT;

     fbDirectoryAccess : FB_DirectoryAccess;
END_VAR

hrDirectoryAccessCreateDirectory := fbDirectoryAccess.CreateDirectory(
              bExecute    := bDirectoryAccessCreateDirectory,   
              ConnectionHandle := depragSmartConnection.ConnectionHandle,
              sFullPath   := 'C:\Test',
              OutputData   => OutputDataDirectoryAccessCreateDirectory);
IF hrDirectoryAccessCreateDirectory <> S_FALSE THEN 
     bDirectoryAccessCreateDirectory := FALSE;
END_IF
                                                    

For examples and explanations regarding the calls of nodes via Siemens TIA Portal please refer to the sub-menu "Siemens TIA Portal" in section "Getting Started".