courtiol / IsoriX

This is the GitHub repository dedicated to the development of the R package IsoriX
14 stars 6 forks source link

GetElev #1

Closed courtiol closed 8 years ago

courtiol commented 8 years ago

When the path is not given, the function forget the final "/" so the generated path does not work. A possible fix should be to change: paste(path, filename, sep = "") by paste(path, filename, sep = "/") But since user may give path with final "/" or not and even use "\" we should be this function much more robust!

courtiol commented 8 years ago

The bug should be fixed. I used function normalizePath for that.