I want to get the path part of a file name in MATLAB like dirname
and basename
in Linux. I've tried to turn to find a function like strrchr
, but I failed. I know strtok
, strfind
and textscan
can be used, but I want to accomplish this with not more than two statements.
For this particular problem I suggest you use the fileparts
function:
[path, filename, extension] = fileparts(str)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With