Delete a file from the OS


var f:java.io.File = new java.io.File( "path" );

var deleteMethod = f.getClass().getDeclaredMethod("delete", null);
deleteMethod.invoke( f , new java.lang.Object[0] );
All code submitted to OpenNTF XSnippets, whether submitted as a "Snippet" or in the body of a Comment, is provided under the Apache License Version 2.0. See Terms of Use for full details.
No comments yetLogin first to comment...