August 1999
Intermediate to advanced
1488 pages
72h 53m
English
filesystemobject.DeleteFile(filename, force)
The DeleteFile() method is used to delete an existing file. An instance of the FileSystemObject is created, which uses the DeleteFile() method to remove the file testing.txt. This method takes two parameters. The first parameter, filename, is a string specifying the name of the file to delete, while force is a Boolean value indicating whether a file that has read only permissions can be deleted.
Listing 9.75 shows how to delete a file.
<html> <body> <script language="JScript"> <!-- Hide // function deletes the file "texting.txt" function deleteFile() { var myObject; // Create an instance ... |
Read now
Unlock full access