RosettaCodeData/Task/Secure-temporary-file/Groovy/secure-temporary-file.groovy

7 lines
152 B
Groovy
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
def file = File.createTempFile( "xxx", ".txt" )
2016-12-05 22:15:40 +01:00
// There is no requirement in the instructions to delete the file.
//file.deleteOnExit()
2013-04-10 23:57:08 -07:00
println file