Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem Deleting files

Status
Not open for further replies.

Milster

Technical User
Oct 17, 2003
5
0
0
AU
Hi.
I am a real novice and can't work this out - sorry if it is way simple for the gurus that live here but please help if you can.
I've got a nifty script that does some great things and I was about to finish when I decided to add some house keeping that deletes an unwanted file on exit. Problem. Whilst my method seems correct there is something about the way I am referencing the unwanted file via a variable that is throwing an error.
I've condensed the issue here...
Code:
' strPathFile is a varaible that has been set earlier, in this example lets assume it is set to "C:\Temp\Goyder2.jpg"
MsgBox strPathFile  'Confirms I have the correct details for a file I want to delete
Dim filesys
Set filesys = CreateObject("Scripting.FileSystemObject")
'filesys.DeleteFile ("C:\Temp\Goyder2.jpg")  'this proved my method is correct and worked as expected but it is hard coded
filesys.DeleteFile (strPathFile) 'this is the line I want to work but it throws an error and fails to delete the file!
I get a "Bad file name or number" error. What am I getting so wrong?
Please help if you can.

Thanks
Milster
 
Fixed!
Turns out my variable which contained the file location was wrapped in quotation marks. This was causing the error when performing the DeleteFile command.
Stripped the quote marks from the string and voila.
All good now
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top