getPhysicalFilePath function

String getPhysicalFilePath(
  1. String filePath, [
  2. String baseFolderPath = ''
])

Implementation

String getPhysicalFilePath(
    String filePath,
    [
        String baseFolderPath = ''
    ]
    )
{
    return path.join( baseFolderPath, filePath );
}