search for: a_basenam

Displaying 1 result from an estimated 1 matches for "a_basenam".

Did you mean: a_basename
2010 Aug 29
1
how to take a os.path.basename
Hi, all I made a simple R script to take the basename of a file without directory names. path.splitted <- strsplit('/path/to/a_basename', '/') path.length <- length(path.splitted[[1]]) basename <- path.splitted[[1]][path.length] # basename <- 'a_basename' Is there a simple function for this? something like os.path.basename(a_filename) of python? Thanks in advance, Hyunchul [[alternative HTML vers...