Jump to content

Cannot delete file


Recommended Posts

Hello experts, new to the forum.

Even with FileClose, I can't seem to delete the internet shortcut with the program running:

$gLnk = String(@DesktopDir & "test.url")

FileOpen($gLnk, 1)
FileWriteLine($gLnk, "[InternetShortcut]")
FileWriteLine($gLnk, "URL=http://www.mysite.com")
FileClose($gLnk)

Error:

Error Deleting File or Folder

Cannot delete test.url: It is being used by another person or program

Close any programs that might be using the file and try again.

I need the program to stay open for other tasks while deleting the internet shortcut if required, but right now I can't. Edited by totaln00ber
Link to comment
Share on other sites

  • Developers

You need to close the returned filehandle not the name..

$gLnk = String(@DesktopDir & "test.url")

$Fh = FileOpen($gLnk, 1)

FileWriteLine($Fh, "[internetShortcut]")

FileWriteLine($Fh, "URL=http://www.mysite.com")

FileClose($Fh)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...