FileDocCategorySizeDatePackage
Support_DeleteOnExitTest.javaAPI DocAndroid 1.5 API413Wed May 06 22:41:06 BST 2009tests.support

Support_DeleteOnExitTest.java

package tests.support;

import java.io.File;
import java.io.FileOutputStream;

public class Support_DeleteOnExitTest {

    /**
     * @param args
     */
    public static void main(String[] args) throws Exception {
        File file1 = new File(args[0]);
        File file2 = new File(args[1]);
        
        file1.deleteOnExit();
        file2.deleteOnExit();
        Runtime.getRuntime().exit(0);
    }

}