70 |
jpm |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
71 |
jpm |
22 |
// CVS : $Id: FIC_manipulation.fonct.php,v 1.2 2004-10-18 10:12:22 jpm Exp $
|
70 |
jpm |
23 |
/**
|
|
|
24 |
* Bibliothèque de fonctions permettant de manipuler des fichier ou des dossiers.
|
|
|
25 |
*
|
|
|
26 |
* Contient des fonctions permettant de manipuler des fichier ou des dossiers.
|
|
|
27 |
*
|
|
|
28 |
*@package Fichier
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
|
|
31 |
//Autres auteurs :
|
|
|
32 |
*@author Aucun
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
71 |
jpm |
34 |
*@version $Revision: 1.2 $ $Date: 2004-10-18 10:12:22 $
|
70 |
jpm |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | LISTE de FONCTIONS |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
/**
|
|
|
43 |
* Fonction supprimerDossier() - Supprime un fichier ou un dossier et tout son contenu.
|
|
|
44 |
*
|
|
|
45 |
* Fonction récursive supprimant tout le contenu d'un dossier.
|
|
|
46 |
* Auteur d'origine : Aidan Lister (http://aidan.dotgeek.org/lib/?file=function.rmdirr.php)
|
|
|
47 |
* Traduction française et ajout gestion séparateur : Jean-Pascal Milcent
|
|
|
48 |
*
|
|
|
49 |
* @author Aidan Lister <aidan@php.net>
|
|
|
50 |
* @author Jean-Pascal Milcent <jpm@tela-botanica.org>
|
|
|
51 |
* @version 1.0.0
|
71 |
jpm |
52 |
* @param string le chemin du dossier à supprimer.
|
|
|
53 |
* @param string le caractère représentant le séparateur dans un chemin d'accès.
|
|
|
54 |
* @return bool retoure true en cas de succès, false dans le cas contraire.
|
70 |
jpm |
55 |
*/
|
|
|
56 |
function supprimerDossier($dossier_nom, $separateur)
|
|
|
57 |
{
|
|
|
58 |
// Simple suppression d'un fichier
|
|
|
59 |
if (is_file($dossier_nom)) {
|
|
|
60 |
return unlink($dossier_nom);
|
|
|
61 |
}
|
71 |
jpm |
62 |
|
70 |
jpm |
63 |
// Analyse du dossier
|
|
|
64 |
$dossier = dir($dossier_nom);
|
|
|
65 |
while (false !== $entree = $dossier->read()) {
|
|
|
66 |
// Nous sautons les pointeurs
|
|
|
67 |
if ($entree == '.' || $entree == '..') {
|
|
|
68 |
continue;
|
|
|
69 |
}
|
71 |
jpm |
70 |
|
70 |
jpm |
71 |
// Suppression du dossier ou appel récursif de la fonction
|
|
|
72 |
if (is_dir($dossier_nom.$separateur.$entree)) {
|
|
|
73 |
supprimerDossier($dossier_nom.$separateur.$entree);
|
|
|
74 |
} else {
|
|
|
75 |
unlink($dossier_nom.$separateur.$entree);
|
|
|
76 |
}
|
|
|
77 |
}
|
71 |
jpm |
78 |
|
70 |
jpm |
79 |
// Nettoyage
|
|
|
80 |
$dossier->close();
|
|
|
81 |
return rmdir($dossier_nom);
|
|
|
82 |
}
|
|
|
83 |
|
|
|
84 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
85 |
*
|
|
|
86 |
* $Log: not supported by cvs2svn $
|
71 |
jpm |
87 |
* Revision 1.1 2004/10/18 10:09:12 jpm
|
|
|
88 |
* Ajout d'une fonction permettant de supprimer récursivement un répertoire.
|
70 |
jpm |
89 |
*
|
71 |
jpm |
90 |
*
|
70 |
jpm |
91 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
92 |
*/
|
|
|
93 |
?>
|