GoLang RecursiveDirectoryIterator::getSubPathname

request it (262)
GoLang replacement for PHP's RecursiveDirectoryIterator::getSubPathname [edit | history]



Do you know a GoLang replacement for PHP's RecursiveDirectoryIterator::getSubPathname? Write it!

PHP RecursiveDirectoryIterator::getSubPathname

PHP original manual for RecursiveDirectoryIterator::getSubPathname [ show | php.net ]

RecursiveDirectoryIterator::getSubPathname

(PHP 5 >= 5.1.0, PHP 7)

RecursiveDirectoryIterator::getSubPathnameGet sub path and name

Description

public string RecursiveDirectoryIterator::getSubPathname ( void )

Gets the sub path and filename.

Parameters

This function has no parameters.

Return Values

The sub path (sub directory) and filename.

Examples

Example #1 getSubPathname() example

$directory = '/tmp';
      
      $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory));
      
      foreach ($it as $file) {
          echo 'SubPathName: ' . $it->getSubPathName() . "\n";
          echo 'SubPath:     ' . $it->getSubPath() . "\n\n";
      }

The above example will output something similar to:

     SubPathName: fruit/apple.xml
     SubPath:     fruit
     
     SubPathName: stuff.xml
     SubPath:     
     
     SubPathName: veggies/carrot.xml
     SubPath:     veggies
    

See Also