elimina file

  • Creatore Discussione Creatore Discussione Imperor
  • Data di inizio Data di inizio

Imperor

Utente Attivo
25 Nov 2010
102
2
18
Roma
www.fcfclean.it
salve ragazzi :) essendo testardo sto tentando invano di eliminare un file questo è ciò che sono riuscito a fare ma elimina tutti i file nelle sottocartelle vorrei che cliccando su un file lo elimina lasciando intatti gli altri file ho fatto cosi:

Screenshot (47).png

Codice:
<?PHP
           
               
            // Define a function to list files and subfolders
                function list_files($dir) {
                  // Get an array of files and subfolders
                  $files = scandir($dir);
                  // Loop through the array
                  foreach ($files as $file) {
                    // Skip the current and parent directories
                    if ($file != "." && $file != "..") {
                      // Get the full path of the file or folder
                      $path = $dir . "/" . $file;
                      // Check if it is a file
                      if (is_file($path)) {
                        // Get the file name
                        $name = basename($path);
                        // Encode the file path
                        $del = unlink($path);
                        // Create a download link
                        echo "Documento: <a href='delfile.php?file=$del'>$name</a><br>";
                      }
                      // Check if it is a folder
                      if (is_dir($path)) {
                        // Print the folder name
                        echo "Cartella: <b>$file</b><br>";
                        // Call the function recursively
                        list_files($path);
                      }
                    }
                  }
                }

                // Call the function with the main directory
                list_files("documenti/");
                ?>
                ---------------------
                delfile.php
                 <?php
                    if(isset($_GET['file'])){
                        $del=$_GET['file'];
                        unlink($del) ;
                    }
                ?>
 
salve ragazzi :) essendo testardo sto tentando invano di eliminare un file questo è ciò che sono riuscito a fare ma elimina tutti i file nelle sottocartelle vorrei che cliccando su un file lo elimina lasciando intatti gli altri file ho fatto cosi:

Vedi l'allegato 8177
Codice:
<?PHP
          
              
            // Define a function to list files and subfolders
                function list_files($dir) {
                  // Get an array of files and subfolders
                  $files = scandir($dir);
                  // Loop through the array
                  foreach ($files as $file) {
                    // Skip the current and parent directories
                    if ($file != "." && $file != "..") {
                      // Get the full path of the file or folder
                      $path = $dir . "/" . $file;
                      // Check if it is a file
                      if (is_file($path)) {
                        // Get the file name
                        $name = basename($path);
                        // Encode the file path
                        $del = unlink($path);
                        // Create a download link
                        echo "Documento: <a href='delfile.php?file=$del'>$name</a><br>";
                      }
                      // Check if it is a folder
                      if (is_dir($path)) {
                        // Print the folder name
                        echo "Cartella: <b>$file</b><br>";
                        // Call the function recursively
                        list_files($path);
                      }
                    }
                  }
                }

                // Call the function with the main directory
                list_files("documenti/");
                ?>
                ---------------------
                delfile.php
                 <?php
                    if(isset($_GET['file'])){
                        $del=$_GET['file'];
                        unlink($del) ;
                    }
                ?>
Ciao @Imperor,

Prova con questo codice ho cercato di tenere le tue stesse pagine

pagina.php
PHP:
<?PHP
          
              
            // Define a function to list files and subfolders
                function list_files($dir) {
                  // Get an array of files and subfolders
                  $files = scandir($dir);
                  // Loop through the array
                  foreach ($files as $file) {
                    // Skip the current and parent directories
                    if ($file != "." && $file != "..") {
                      // Get the full path of the file or folder
                      $path = $dir . "/" . $file;
                      // Check if it is a file
                      if (is_file($path)) {
                        // Get the file name
                        $name = basename($path);
                        // Encode the file path
                       // $del = unlink($path);
                        // Create a download link
                        $cart = explode("//", $path);
                        echo "Documento: <a href='delfile.php?file=$cart[1]'>$name</a><br>";
                      }
                      // Check if it is a folder
                      if (is_dir($path)) {
                        // Print the folder name
                        echo "Cartella: <b>$file</b><br>";
                        // Call the function recursively
                        list_files($path);
                      }
                    }
                  }
                }

                // Call the function with the main directory
                list_files("documenti/");
                ?>

delfile.php
PHP:
<?php
                    if(isset($_GET['file'])){
                        
                    
                        
                       $del=$_GET['file'];
                        
                        unlink("documenti/" . $del) ;
                        header("Location: pagina.php");
                    }
?>

Fammi sapere
 

Discussioni simili