Skip to Content
VB & VBA in a Nutshell: The Language
book

VB & VBA in a Nutshell: The Language

by Paul Lomax
October 1998
Intermediate to advanced
656 pages
16h 10m
English
O'Reilly Media, Inc.
Content preview from VB & VBA in a Nutshell: The Language
Kill Statement

Named Arguments

No

Syntax

Kill pathname

pathname

Use: Required

Data Type: String

The file or files to be deleted.

Description

Deletes a file from disk.

Rules at a Glance

  • If pathname doesn't include a drive letter, the folder and file are assumed to be on the current drive.

  • If pathname doesn't include a folder name, the file is assumed to be in the current folder.

  • You can use the multiple-character (*) and single-character (?) wildcards to specify multiple files to delete.

  • If the file is open or is set to read-only, an error is generated.

Programming Tips and Gotchas

  • Note that in the Windows 95 and NT environments, the deleted file isn't placed in the Recycle Bin. However, the following code demonstrates how to use the FileOperation API found in Shell32.DLL to move a file to the Windows 95 Recycle Bin or the NT4 Recycler:

    Option Explicit 'declare the file operation structure Type SHFILEOPSTRUCT hWnd As Long wFunction As Long pFrom As String pTo As String fFlags As Integer fAborted As Boolean hNameMaps As Long sProgress As String End Type 'declare two constants needed for the delete operation Private Const FO_DELETE = &H3 Private Const FO_FLAG_ALLOWUNDO = &H40 'declare the API call function Declare Function SHFileOperation Lib "shell32.dll" _ Alias "SHFileOperationA" _ (lpFileOp As SHFILEOPSTRUCT) As Long Public Function WinDelete(sFileName As String) As Long 'create a copy of the file operation structure Dim SHFileOp As SHFILEOPSTRUCT 'need a Null terminating string ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Visual Basic Design Patterns: VB 6.0 and VB.NET

Visual Basic Design Patterns: VB 6.0 and VB.NET

James W. Cooper
Programming Excel with VBA and .NET

Programming Excel with VBA and .NET

Jeff Webb, Steve Saunders

Publisher Resources

ISBN: 1565923588Catalog PageErrata