cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
j_bonnouvrier
Level III

List of folders

Hi,

I am looking forward a solution to get a list of folder in a given directory using JSL.

Thanks in advance!

Jerome

1 ACCEPTED SOLUTION

Accepted Solutions
ian_jmp
Level X

Re: List of folders

Something like this, perhaps?

 

 

Names Default To Here( 1 );
 
// Given a path to a folder, returns a list of all folders therein (not recursive!)
dirList =
Function({path}, {Default Local},
  // Get all files and folders in the specified folder
  fid = Files In Directory( path);
  // Remove all the files, just leaving the folders
  for(f=NItems(fid), f>=1, f--, if(IsFile(path||"/"||fid[f]), RemoveFrom(fid, f)));
  fid;
);
 
// Try out the function
path = "$DESKTOP";
Print(dirList(path));

 

View solution in original post

3 REPLIES 3
ian_jmp
Level X

Re: List of folders

Something like this, perhaps?

 

 

Names Default To Here( 1 );
 
// Given a path to a folder, returns a list of all folders therein (not recursive!)
dirList =
Function({path}, {Default Local},
  // Get all files and folders in the specified folder
  fid = Files In Directory( path);
  // Remove all the files, just leaving the folders
  for(f=NItems(fid), f>=1, f--, if(IsFile(path||"/"||fid[f]), RemoveFrom(fid, f)));
  fid;
);
 
// Try out the function
path = "$DESKTOP";
Print(dirList(path));

 

j_bonnouvrier
Level III

Re: List of folders

Indeed, something like this should help!

I will try to insert this in my script, but it should help me to go forward!

Thanks a lot Ian!

Jérôme

s_kris
Level I

Re: List of folders

It works really well.

Recommended Articles