From: Graham Flory on
I need to create a vairable containing the name of the current folder I'm in, not the full path name that the pwd command returns. In Linux, I believe the command is basename 'pwd' Does anyone know what the comparable command in Matlab is?
From: ImageAnalyst on
On Jun 17, 12:49 pm, "Graham Flory" <flo...(a)ohsu.edu> wrote:
> I need to create a vairable containing the name of the current folder I'm in, not the full path name that the pwd command returns.  In Linux, I believe the command is basename 'pwd'  Does anyone know what the comparable command in Matlab is?  

-----------------------------------------------------------------------------

currentDirectory = pwd
[upperPath, deepestFolder, ~] = fileparts(currentDirectory)
From: Graham Flory on
Thank you ImageAnalyst - I really appreciate it !!



ImageAnalyst <imageanalyst(a)mailinator.com> wrote in message <1cefcd9b-977d-4223-89f4-3794e7956679(a)k39g2000yqd.googlegroups.com>...
> On Jun 17, 12:49 pm, "Graham Flory" <flo...(a)ohsu.edu> wrote:
> > I need to create a vairable containing the name of the current folder I'm in, not the full path name that the pwd command returns.  In Linux, I believe the command is basename 'pwd'  Does anyone know what the comparable command in Matlab is?  
>
> -----------------------------------------------------------------------------
>
> currentDirectory = pwd
> [upperPath, deepestFolder, ~] = fileparts(currentDirectory)
From: Jan Simon on
Dear Graham!

> > currentDirectory = pwd
> > [upperPath, deepestFolder, ~] = fileparts(currentDirectory)

I'd omit the trailing "~":
[upperPath, deepestFolder] = fileparts(currentDirectory)
It works, but I do not see the benefits.

Kind regards, Jan
From: us on
"Jan Simon" <matlab.THIS_YEAR(a)nMINUSsimon.de> wrote in message <hvdroo$8ec$1(a)fred.mathworks.com>...
> Dear Graham!
>
> > > currentDirectory = pwd
> > > [upperPath, deepestFolder, ~] = fileparts(currentDirectory)
>
> I'd omit the trailing "~":
> [upperPath, deepestFolder] = fileparts(currentDirectory)
> It works, but I do not see the benefits.
>
> Kind regards, Jan

well... what's the fuss about these output args(?)...

one of the (shorter) solutions

cd
% ans = F:\usr\r2010a
fp=fileparts(cd)
% fp = F:\usr

us