Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseReturns a unique path in the Temp folder within your current project.
The returned path is relative to the project folder.
The returned path is of a formTemp/UnityTempFile-
uniqueID, where uniqueID
is guaranteed to be
unique over space and time.You can use it to create temporary files/folders and be sure that
you are not overriding somebody else's files, plus you don't have to
keep track of the unique IDs yourself.
@MenuItem ("Example/Get Unique Path") static function GetUniqueProjectPath () { // Prints the unique path Debug.Log (FileUtil.GetUniqueTempPathInProject ()); }