numpy.DataSource.abspath¶
method
- 
DataSource.abspath(path)[source]¶ Return absolute path of file in the DataSource directory.
If path is an URL, then
abspathwill return either the location the file exists locally or the location it would exist when opened using theopenmethod.- Parameters
 - path
str Can be a local file or a remote URL.
- path
 - Returns
 - out
str Complete path, including the
DataSourcedestination directory.
- out
 
Notes
The functionality is based on
os.path.abspath.