apm_mkdir (private)

 apm_mkdir path

Defined in packages/acs-tcl/tcl/apm-file-procs.tcl

Creates the directory specified by path and returns it.

Parameters:
path

Partial Call Graph (max 5 caller/called nodes):
%3 apm_workspace_dir apm_workspace_dir (public) apm_mkdir apm_mkdir apm_workspace_dir->apm_mkdir apm_workspace_install_dir apm_workspace_install_dir (public) apm_workspace_install_dir->apm_mkdir

Testcases:
No testcase defined.
Source code:
    if { ![file isdirectory $path] } {
        #
        # 'path' might exists and not be a directory, we force-reclaim
        # it in this case.
        #
        file delete -force -- $path
        file mkdir $path
    }
    return $path
Generic XQL file:
packages/acs-tcl/tcl/apm-file-procs.xql

PostgreSQL XQL file:
packages/acs-tcl/tcl/apm-file-procs-postgresql.xql

Oracle XQL file:
packages/acs-tcl/tcl/apm-file-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: