netadictos
netadictos

Reputation: 7722

Unlock a file with unlocker from a WinForms App?

I am trying to unlock a file from a C# program, using unlocker.

In my UI, I put a button to unlock the file the app couldn't delete. When the user pushes the button, I want unlocker (the famous app) to be opened.

I have read about in the Unlocker web, and there is some explanations about the commandline to use but nothing works.

I write the following code but nothing happens:

"c:\Program Files\unlocker\unlocker.exe" -L "PATHFORTHEFILE.doc"

Nothing happens. I have tried without parameters and with -LU.

Any idea?

Something more efficient than unlocker to integrate it with software?

Upvotes: 1

Views: 2566

Answers (3)

mady
mady

Reputation:

unnlocker.exe c:\song.mp3 -s -d

-s unlock

-d delete

Upvotes: 0

Karl
Karl

Reputation: 9155

If unlocker comes with parameters -L and -U, I don't think L would be the one you want to unlock with. Probably U is for unlocking ;)

If you have any control of the application that is locking the file, it would be a better solution to have that program free the file rather than a third party app rip it away like this.

Upvotes: 1

EBGreen
EBGreen

Reputation: 37810

Look at the documentation for the System.Diagnostics.Process class and the related ProcessStartInfo class.

Upvotes: 0

Related Questions