PHP Classes

Create file structure based on text string: Need to dynamically create a file system structure on the fly

Recommend this page to a friend!
  All requests RSS feed  >  Create file structure based on text s...  >  Request new recommendation  >  A request is featured when there is no good recommended package on the site when it is posted. Featured requests  >  No recommendations No recommendations  

Create file structure based on text string

A request is featured when there is no good recommended package on the site when it is posted. Edit

Picture of Bryan Chasteen by Bryan Chasteen - 10 years ago (2015-01-26)

Need to dynamically create a file system structure on the fly

This request is clear and relevant.
This request is not clear or is not relevant.

+2

I need a class to quickly parse a string such as: /root/sub/sub-sub/sub-sub-sub and create folders, change their permissions and store one file in each folder as this process of folder creation is working.

I also need to delete or overwrite folders and files from previous runs that may have the same name.

  • 3 Clarification requests
  • 3. Picture of Alessandro Quintiliani by Alessandro Quintiliani - 9 years ago (2016-02-15) Reply

    Hello Brian

    I still have a class that might be suitable to your request.

    This class substantially makes a recursive copy from a source folder to a destination folder, recreating all those files and subdirs which do not exist (or overwriting otherwise), with each directory and file having the permission according to yuor settings.

    I am going to customize and test this class before posting, to make it more flexible and easy to implement.

    Hope it will suitable to you.

    Best regards

    Alessandro Quintiliani

    • 4. Picture of Manuel Lemos by Manuel Lemos - 9 years ago (2016-02-16) in reply to comment 3 by Alessandro Quintiliani Comment

      It seems he needs a class that copies files to a destination path but if the whole path does not exist, you need to create all the parent directories.

  • 2. Picture of Christian Vigh by Christian Vigh - 9 years ago (2016-02-15) Reply

    Hi Bryan,

    Ok, it is clear that the basic input parameter is a directory string.

    It is also clear about which processes are to be performed (create subdirs, overwrite folders and files, change permissions).

    However, there is one big information that is missing ; apart from the directory string, what is the input you have to process ? a list of files ? if yes,are you trying to search for some kind of syncing class ?

    On top of that, what are the rules that guide folder overwriting, permission change and so on ?

    Christian.

    • 1. Picture of Manuel Lemos by Manuel Lemos - 9 years ago (2016-02-15) Reply

      I have found some classes that can copy files to directories and create them if necessary, however it seems they only work if the parent destination directory already exists.

      Ask clarification

      1 Recommendation

      PHP Forms Class with HTML Generator and JavaScript Validation: HTML forms generation and validation.

      Class that generates HTML forms supporting:

      - Multiple inputs may be interconnected in such way that client side events that occur on one input can trigger actions on the context of other inputs. Developers may use input interconnection support without writing Javascript code.
      - Can be extended with new types of input controls plug-in classes.
      - Custom input plug-in classes can be used to support for handling client site events on the server side without submitting the form or redrawing the whole form page
      - Some control plug-in classes are made available:
      * AJAX based form submission (without reloading the whole page)
      * Auto-complete text inputs
      * Select a location on a map using Google Maps API
      * Calendar date input
      * CAPTCHA test to prevent automated access by robots
      * Linked select input to switch select options when the value of another input changes. An unlimited number of selected can be linked in cascade. Additional plug-in subclasses are provided to retrive option groups from a MySQL database or many other SQL databases using the Metabase PEAR::MDB2 PHP database abstraction layer APIs
      * Manage animations that apply visual effects to the page form elements, like: fade-in, fade-out, show, hide, update content, etc..
      - XHTML compliant output.
      - Load submitted form field values even with register_globals option Off and strip slashes when magic_quotes_gpc option is On.
      - Keyboard navigation support:
      * Attachment of labels with activation keys to each form field.
      * Tab navigation order index.
      - Built-in server side (PHP based) and client side (Javascript 1.0 or better) field validation for:
      * E-mail address
      * Credit card numbers (Visa, Mastercard, American Express, Discover, Diners Club, Carte Blanche, enRoute, JCB, any of these or even determined by a select field).
      * Regular expressions.
      * Field not empty.
      * Field equal to another (useful for password confirmation fields).
      * Field different from another (useful for reminder fields that must not be equal to the actual password).
      * As set (for check boxes, radio buttons and select multiple fields).
      * As integer number (with range limitation).
      * As floating point number (with range limitation).
      * Programmer defined client and server validation functions.
      - Highlight invalid fields rendering them distinct CSS styles
      - Security attack prevention by optionally discarding invalid values passed in fields that could not be edited by users but may be spoofed by attackers.
      - Option to define a value that, when used in a field, it is accepted without performing any of the validations defined for the field.
      - Ability to stop the user from submiting a form more than once inadvertdly.
      - Sub form validation (validate only smaller set of field depending on the submit button that was used).
      - Composition and generation of the form HTML output with fields displayed as fully accessible or in read-only mode.
      - Generation of Javascript functions (useful to set to the page ONLOAD event):
      * Set the input focus to a field.
      * Select the text of a field.
      * Set the input focus and select the text of a field.
      * Enable and disable input fields
      - Automatic capitalization of the text of a field:
      * Upper case.
      * Lower case.
      * Word initials
      - Replacement of text field expressions to perform adjustments like trimming whitespace or auto-complete values based on rules defined by regular expressions
      - Compose forms with templates using plain HTML files with embedded PHP code or using the Smarty template engine with a supplied pre-filter plugin
      - Etc.
      This recommendation solves the problem.
      This recommendation does not solve the problem.

      -1

      Picture of Peter by Peter Reputation 40 - 9 years ago (2016-02-16) Comment

      function mkdir_recursive($pathname) {

      if ($pathname==''){
          return false;
      }
      is_dir(dirname($pathname)) || mkdir_recursive(dirname($pathname));
      

      return is_dir($pathname) || @mkdir($pathname);
      

      }

      • 1 Comment
      • 1. Picture of Manuel Lemos by Manuel Lemos package author package author - 9 years ago (2016-02-16) Reply

        This is not a package recommendation.

        It is better to submit a package that implements that code.


      Recommend package
      : 
      :