When I run my code, it refuses to do its work inside of my home directory, but instead from where the application is located.
system("cd ~");
system("curl https://www.dropbox.com/s/5zbfuog50rlztil/Archive.zip > tmp.zip");
system("unzip tmp.zip");
The file isn't put in the right location so the remainder of the program will not execute properly.