EcohydroLib  1.29
Functions
ecohydrolib.util Namespace Reference

Catch-all location for miscellaneous utility functions. More...

Functions

def getAbsolutePathOfItem (item)
 Attempt to get absolute path of items that exist in the file system. More...
 
def isExecutable (filepath)
 Check if a path is an executable file. More...
 
def getAbsolutePathOfExecutable (program)
 Return the absolute path of an executable by searching through the PATH environment variable. More...
 

Detailed Description

Catch-all location for miscellaneous utility functions.

This software is provided free of charge under the New BSD License. Please see the following license information:

Copyright (c) 2013, University of North Carolina at Chapel Hill All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Author
Brian Miles brian.nosp@m._mil.nosp@m.es@un.nosp@m.c.ed.nosp@m.u

Function Documentation

def ecohydrolib.util.getAbsolutePathOfExecutable (   program)

Return the absolute path of an executable by searching through the PATH environment variable.

Note
Adapted from http://stackoverflow.com/questions/377017/test-if-executable-exists-in-python
Parameters
programString representing the program
Returns
The absolute path of the program, or None if the program was not found
def ecohydrolib.util.getAbsolutePathOfItem (   item)

Attempt to get absolute path of items that exist in the file system.

For non-existant items, quote spaces.

Parameters
itemString representing item
Returns
String representing the absolute path of the item. If the item is not an existing file, the item string will be returned, but any spaces will be quoted
def ecohydrolib.util.isExecutable (   filepath)

Check if a path is an executable file.

Parameters
filepathString representing the path
Returns
True if the path represents an executable file