Skip to content

Latest commit

 

History

History
60 lines (48 loc) · 2.1 KB

CreateTempDirectory.md

File metadata and controls

60 lines (48 loc) · 2.1 KB

Function: CreateTempDirectory

Creates a temporary directory in the specified directory with the specified prefix if passed.

Method Signature

CreateTempDirectory(directory=[string], prefix=[string])

Arguments

Argument Type Required Description Default
directory string false The directory in which to create the temp directory, we default to the system temp directory /var/folders/sh/yq09rnbj48764cvf2k4nhcxh0000gn/T/
prefix string false The prefix string to be used in generating the directory's name; may be empty

Examples

Related