![]() |
Deleting a file on C drive using VBA
I need to delete the file C:\Sheets.xls using VBA.
How do I do this? Thank you Todd Huttenstine |
Deleting a file on C drive using VBA
|
Deleting a file on C drive using VBA
Below is the code I used and its closing the file, not
deleting the file. Kill "c:\sheets.xls" -----Original Message----- Take a look at the Kill command in Help. Todd Huttenstine wrote: I need to delete the file C:\Sheets.xls using VBA. How do I do this? Thank you Todd Huttenstine -- Dave Peterson . |
Deleting a file on C drive using VBA
nevermind I got it.
-----Original Message----- Take a look at the Kill command in Help. Todd Huttenstine wrote: I need to delete the file C:\Sheets.xls using VBA. How do I do this? Thank you Todd Huttenstine -- Dave Peterson . |
Deleting a file on C drive using VBA
Untested air code (needs reference to Microsoft Scripting Runtime Library [scrrun.dll]):
Dim fso as FileSystemObject Dim f as File Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFile("C:\Sheets.xls") f.Delete Set f = Nothing Set fso = Nothing Hope this helps! Jake ----- Todd Huttenstine wrote: ----- Below is the code I used and its closing the file, not deleting the file. Kill "c:\sheets.xls" -----Original Message----- Take a look at the Kill command in Help. Todd Huttenstine wrote: I need to delete the file C:\Sheets.xls using VBA. How do I do this? Thank you Todd Huttenstine -- Dave Peterson . |
Deleting a file on C drive using VBA
Todd,
The Kill command wont work if you have the file you want to kill open, as I presume you must have, otherwise you couldn't close it! Pete |
Deleting a file on C drive using VBA
"Jake" wrote in message ...
Untested air code (needs reference to Microsoft Scripting Runtime Library [scrrun.dll]): Dim fso as FileSystemObject Dim f as File Change these declarations to 'As Object' and the reference is not needed. |
All times are GMT +1. The time now is 08:37 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com