Hello, I am using this piece of code to create a temporary file:
String tmpDirectoryOp = System.getProperty("java.io.tmpdir");
File tmpDirectory = new File(tmpDirectoryOp);
File fstream = File.createTempFile("tmpDirectory",".flv", tmpDirectory);
FileOutputStream fos = new FileOutputStream(fstream);
DataOutputStream dos=new DataOutputStr...
The problem is while running my code, i always come up to my old javascript files on VS.2010.
I think its reason is Temporary ASP.NET Files folder.
How can i clear the temp folder when i press to F5 ?
...
I would like to create a temp file, write to the file-handle then call an external program with the filename.
The problem is I would normally want to close the file after writing to it and before calling the external program, but if I understand correctly close-ing a tempfile() causes it to be removed.
So what is the solution here?
...