temp

System.IO.Path.GetTempPath() access denied

Hi, im creating temporary files to be stored in the Temp folder found by: string path = System.IO.Path.GetTempPath() method returns C:\windows\Temp\ i append my filename: string filename = myfile.txt System.IO.Path.Combine(path,filename) However, this gives me a "Message":"The given path\u0027s format is not supported.","StackTrac...

temporary image file in ruby

hi i would like to know how I can create a temporary file image (png) in ruby, because tempfile only gets you a random file name but it doesn't have an extension file. ...