2.1.25.28 GetProjectAttachedFilesPath


Description

get the path of the temp folder in which the OPJ attached files are placed.

Syntax

string GetProjectAttachedFilesPath( )

Parameters

Return

empty string is no such path

Examples

EX1

void GetProjectAttachedFilesPath_ex1()
{
    string strPath;
    strPath = GetProjectAttachedFilesPath();
    if(strPath.IsEmpty())
        out_str("Not files attached to project");
    else
        out_str(strPath);
}

Remark

See Also

Header to Include

origin.h

Reference