Questions tagged [tempdir]

a temporary folder or temporary directory is a directory used to hold temporary files. Many operating systems and some software automatically delete the contents of such directories at boot-up or at regular intervals.

31 questions
-2
votes
1 answer

How to add a file to a temporary directory?

I have created a temp dir using tmpDir, err := ioutil.TempDir(dir, "OAS"). And i used this path to add a swagger extracted from aws to this temp dir. path = tmpDir + "/" + apiName + ".json", but it doesnt work. i also tried path =…
1 2
3