I have a program that copies a .zip
file from one directory to another and unzips it. I use background worker for this.
Now the program works when it's started using the Visual Studio Start button or double clicked directly from Debug/program.exe
, but when I copy this .exe
file elsewhere, it starts properly doing some operations on the main thread, but the background worker doesn't seem to work.
Does anyone have any clue what's going on?