Ignore:
Timestamp:
2013-06-04T09:28:48+12:00 (11 years ago)
Author:
jmt12
Message:

Adding in a 'isHDFS()' function so that some plugins (SimpleVideoPlug) can know to move the files where other executables (HandbrakeCLI etc) can see them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/parallel-building/trunk/src/perllib/FileUtils.pm

    r27491 r27526  
    578578## isFilenameAbsolute()
    579579
     580
     581## @function isHDFS()
     582#
     583sub isHDFS
     584{
     585  my $path = shift(@_);
     586  my $driver = &FileUtils::_determineDriver($path);
     587  return &FileUtils::_callFunction($driver, 'isHDFS');
     588}
     589## isHDFS()
    580590
    581591## @function isSymbolicLink()
Note: See TracChangeset for help on using the changeset viewer.