ActionsLike0
Bug #15267
closedFile.basename + File.extname does not restore the original name
Description
Related to #15224, I found the case File.basename(name, '.*')+File.extname(name) == File.basename(name)
is not true.
name = 'file.'
File.basename(name, '.*') #=> "name"
File.extname(name) #=> ""
Both do not contain the last dot.
basename(1) seems to result in the base name with the dot, when stripping a wildcard suffix.
$ basename name. '.*'
name.
Files
Updated by jeremyevans0 (Jeremy Evans) over 5 years ago
- Related to Bug #15244: Method #extname return empty string if filename is dot ('.') added
ActionsLike0