PHP forums, MySQL forums, Web Development resources

Home PageHome    PHP ResourcesTopic List    FAQFAQ    SearchSearch    MemberlistMemberlist    UsergroupsUsergroups 
 RegisterRegister
    ProfileProfile    Log in to check your private messagesLog in to check your private messages    Download the RSS Reader RSS Feed Download the RSS Reader RSS for this forum Log inLog in 

PHP Forum :: MySQL Forum :: Java Script Forum



Create Zip file issue

 
Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP General
View previous topic :: View next topic  
Author Message
sss.ark



Joined: 28 Jan 2010
Posts: 2

PostPosted: Thu Jan 28, 2010 5:17 pm    Post subject: Create Zip file issue Reply with quote

hi,
i have to convert folder to zip.

my script path is www.domainname.com/create_zip.php
Folder location : www.domainname.com/Main_dir/12343/sample/test.jpg.
i wants to zip the sample folder alone.

if i create means it will come along with the root directory (Main_dir/12343/sample)

i need only sample folder content to be zipped. no trace for parent directory.

how to proceed.
thanks in advance.
Back to top
View user's profile Send private message
qforever



Joined: 01 Feb 2010
Posts: 4

PostPosted: Mon Feb 08, 2010 5:14 pm    Post subject: Reply with quote

I made this using zip.lib.php(it goes with http://www.phpmyadmin.net) but I zipped from strings(just fread their contents and gaev them names directly).
But I'm not sure that this advice will help you. Please show your code.
Back to top
View user's profile Send private message
sss.ark



Joined: 28 Jan 2010
Posts: 2

PostPosted: Tue Feb 09, 2010 5:58 am    Post subject: Reply with quote

hi,
thanks for ur response.

i found another solution.
find below.

$dirName = $path;

if (!is_dir($dirName)) {
throw new Exception('Directory ' . $dirName . ' does not exist');
}

$dirName = realpath($dirName);
if (substr($dirName, -1) != '/') {
$dirName.= '/';
}
$dirStack = array($dirName);
$cutFrom = strrpos(substr($dirName, 0, -1), '/')+1;
while (!empty($dirStack)) {
echo $currentDir = array_pop($dirStack);
echo "<br>";
$filesToAdd = array();

$dir = dir($currentDir);
while (false !== ($node = $dir->read())) {
if (($node == '..') || ($node == '.')) {
continue;
}
if (is_dir($currentDir . $node)) {
array_push($dirStack, $currentDir . $node . '/');
}
if (is_file($currentDir . $node)) {
$filesToAdd[] = $node;
}
}

echo $localDir = substr($currentDir, $cutFrom);
echo "<br>";
$zip->addEmptyDir($localDir);

foreach ($filesToAdd as $file) {
$zip->addFile($currentDir . $file, $localDir . $file);
}
}
Back to top
View user's profile Send private message
Display posts from previous:   
WeberTrivia Questions WeberTrivia Questions
 Think you are smart? Prove it!. Try your skills with these questions :
 WeberTrivia QuestionsRecursive arrays and multi-dimensional arrays are one and the same. (PHP and MySQL)
 WeberTrivia QuestionsThe \"cache_dir\" tag of the squid configuration has a default of /var/spool/squid. (Linux)

WeberTrivia Questions



PHP Code Examples
 Stream diffrent sizes of images from a single image to save disk space.
 JavaScript dropdown list menu to switch any page.
 Dump the contents of a PHP variable in html format with a recursive list of subfolders and files from a given root directory.
 PHP Dump in html format the contents of one array variable with a recursive list of the nested array variables inside.
 Link Extractor - This function is used to extract links from a given URL. This will convert relative path into absolute path and also remove PHPSESSID stuff.
 Building a Dynamic Form using Javascript and innerHTML. Add form elements in realtime without refreshing the page.
 A PHP Calendar function with CSS : add a cool calendar to any php page by just adding a calendar class based function.
Post new topic   Reply to topic    WeberForums.com Forum Index -> PHP General All times are GMT + 2 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Powered by phpBB © 2001, 2005 phpBB Group
PHP Forum :: MySQL Forum :: Java Script Forum