Canman2005 Posted August 20, 2007 Share Posted August 20, 2007 Hi all Im using the following to unzip files on the server <?php system('unzip filename.zip'); ?> How can you define the target of where files should be extracted? Any help would be ace Thanks Ed Link to comment https://forums.phpfreaks.com/topic/65839-systemunzip-setting-a-target/ Share on other sites More sharing options...
trq Posted August 20, 2007 Share Posted August 20, 2007 <?php system('unzip -d dirtounzipto filename.zip'); ?> Link to comment https://forums.phpfreaks.com/topic/65839-systemunzip-setting-a-target/#findComment-329026 Share on other sites More sharing options...
Canman2005 Posted August 20, 2007 Author Share Posted August 20, 2007 Thanks I tried <?php $upload_folder = ../files/904/ $upload_files = ../files/904/904images.zip system('unzip -d $upload_folder $upload_files'); ?> But that doesnt seem to do anything when I run the page. Any ideas? Thanks Ed Link to comment https://forums.phpfreaks.com/topic/65839-systemunzip-setting-a-target/#findComment-329038 Share on other sites More sharing options...
Canman2005 Posted August 20, 2007 Author Share Posted August 20, 2007 Thanks I tried <?php $upload_folder = '../files/904/'; $upload_files = '../files/904/904images.zip'; system('unzip -d $upload_folder $upload_files'); ?> But that doesnt seem to do anything when I run the page. Any ideas? Thanks Ed Link to comment https://forums.phpfreaks.com/topic/65839-systemunzip-setting-a-target/#findComment-329039 Share on other sites More sharing options...
trq Posted August 20, 2007 Share Posted August 20, 2007 <?php $upload_folder = '../files/904/'; $upload_files = '../files/904/904images.zip'; system("unzip -d $upload_folder $upload_files"); ?> Link to comment https://forums.phpfreaks.com/topic/65839-systemunzip-setting-a-target/#findComment-329047 Share on other sites More sharing options...
Canman2005 Posted August 20, 2007 Author Share Posted August 20, 2007 Brill Thanks so much Link to comment https://forums.phpfreaks.com/topic/65839-systemunzip-setting-a-target/#findComment-329057 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.