From: Graham Flory on 17 Jun 2010 12:49 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 17 Jun 2010 13:00 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 17 Jun 2010 13:18 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 17 Jun 2010 15:07 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 17 Jun 2010 15:51 "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
|
Next
|
Last
Pages: 1 2 Prev: real time video display problem..help?! Next: force imput to be integer |