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 (required)
- Partial Call Graph (max 5 caller/called nodes):
- 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 $pathGeneric 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