User Tools

Site Tools


Sidebar

en:objects:textfile:folders_work:get_all_files_in_folder

get_all_files_in_folder

get_all_files_in_folder($folder,$file="",$include_subfolders=false,$only_folders=false,$timeout=60,$extension=""); - this function is used to get the paths of all elements in the specified folder

The function accepts parameters as input:

  • $folder – path to the folder where you want to get the paths to all elements. It can be either absolute or relative (relative to the script folder).
  • $file – after processing, write the result to the specified file (by default, "" - do not write).
  • $include_subfolders – including subfolders.
  • $only_folders – get folder paths only.
  • $extension – string with file extensions to get the paths for (by default "" - all files with extensions separated from each other ";").
  • $timeout – the maximum time to perform this operation (in seconds), by default - 60 seconds, if the operation is not completed during this time, the script continues to run further.

    After testing, the function returns the result of its work to the script :
  • true – operation completed (boolean)
  • false – operation failed (boolean)

    PHP example:

    <?php $xhe_host = "127.0.0.1:7010";
     
    //connect the object to control the emulator, if not already connected
    if(!isset($path))
      $path = "../../../Templates/xweb_human_emulator.php";
    require($path);
     
    //Start
    echo "<hr> <font color = blue> textfile->".basename(__FILE__)."</font> <hr>";
     
    //1
    echo("1.Get all directories in the windows directory(1 level): <br> <br>");
    echo($textfile->get_all_files_in_folder("C: \ Windows \", "", false, true, 60)."<br>");
     
    //2
    echo("<br> 2.Get all directories and subdirectories in the Windows help directory: <br> <br>");
    echo($textfile->get_all_files_in_folder("C: \ Windows \ Help \", "", true, true, 900)."<br>");
     
    //3
    echo("<br> 3.Get all exe files and directories in windows folder: <br> <br>");
    echo($textfile->get_all_files_in_folder("C: \ Windows \", "*.exe", false, false, 900));
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
     
    xhe_host = "127.0.0.1:7011"
    from xweb_human_emulator import *
     
    # Start
    echo("<hr> <font color = blue> textfile.xxxxxxxxx </font> <hr>")
     
    # 1
    echo("1.Get all directories in windows directory(1 level): <br> <br>")
    echo(textfile.get_all_files_in_folder("C: \ Windows \", "", false, true, 60), "<br>")
     
    # 2
    echo("<br> 2.Get all directories and subdirectories in the windows help directory: <br> <br>")
    echo(textfile.get_all_files_in_folder("C: \ Windows \ Help \", "", true, true, 900), "<br>")
     
    # 3
    echo("<br> 3.Get all exe files and directories in windows folder: <br> <br>")
    echo(textfile.get_all_files_in_folder("C: \ Windows \", "*.exe", false, false, 900))
     
    # end
    echo("<hr> <br>")
     
    # Quit
    app.quit()

    C# example:

    #region using
     
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.IO;
    using System.Text;
    using System.Threading;
     
    using XHE;
    using XHE.XHE_DOM;
    using XHE.XHE_System;
    using XHE.XHE_Window;
    using XHE.XHE_Web;
     
    #endregion
     
     class Program: XHEScript
     {
    static void Main(string [] args)
    {
    //init XHE
    server = "127.0.0.1:7010";
    InitXHE();
     
    //Start
    echo("<hr> <font color = blue> textfile.get_all_external_inner_texts_and_hrefs </font> <hr>");
     
    //1 step
    echo("1.Get all directories in the windows directory(1 level): <br> <br>");
    echo(textfile.get_all_files_in_folder("C: \ Windows \", "", false, true, 60) + "<br>");
     
    //step 2
    echo("<br> 2.Get all directories and subdirectories in the Windows help directory: <br> <br>");
    echo(textfile.get_all_files_in_folder("C: \ Windows \ Help \", "files.txt", true, true, 900) + "<br>");
     
    //step 3
    echo("<br> 3.Get all txt files and directories in the windows folder: <br> <br>");
    echo(textfile.get_all_files_in_folder("C: \ Windows \", "*.txt", false, false, 900, "txt"));
     
    //end
    echo("<hr> <br>");
     
    app.quit();
    }
    }

    Java Script example:

    //connect the object to control the emulator, if not already connected
    xhe_host = "127.0.0.1:7010";
    echo = require("../../../Templates JS/xweb_human_emulator.js");
     
    //Start
    echo("<hr> <font color = blue> textfile.get_all_files_in_folder </font> <hr>");
     
    //1 step
    echo("1.Get all directories in the windows directory(1 level): <br> <br>");
    echo(textfile.get_all_files_in_folder("C: \ Windows \", "", false, true, 60) + "<br>");
     
    //step 2
    echo("<br> 2.Get all directories and subdirectories in the Windows help directory: <br> <br>");
    echo(textfile.get_all_files_in_folder("C: \ Windows \ Help \", "files.txt", true, true, 900) + "<br>");
     
    //step 3
    echo("<br> 3.Get all txt files and directories in the windows folder: <br> <br>");
    echo(textfile.get_all_files_in_folder("C: \ Windows \", "*.txt", false, false, 900, "txt"));
     
    //end
    echo("<hr> <br>");
     
     
    //Quit
    app.quit();
  • en/objects/textfile/folders_work/get_all_files_in_folder.txt · Last modified: 2020/10/14 12:53 (external edit)