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

How to open files with a certain file name only?

Hi Guys,

I am trying to open some files which have a certain name as follows:

files1 = Files In Directory( "C:\log\*.test*" );

However I do not get anything in files1. How can I just search for specific file names and save them in the files1 list?

Thanks.
4 REPLIES 4
mpb
mpb
Level VII

Re: How to open files with a certain file name only?

One way:

files1 = Files In Directory("C:\log")

Then go through the list and discard any file names that do not match your file mask, leaving a smaller list containing only the kind of file names you want.

Re: How to open files with a certain file name only?

Is there a * wildcard that I can use? I am used to grep in unix. I am trying something as follows:

mpb
mpb
Level VII

Re: How to open files with a certain file name only?

Try this:
= 1, i--,
If( !Starts With( files1[i], "test" ),
Remove From( files1, i )
);
);
Show( files1 );

-->

Re: How to open files with a certain file name only?

That worked, Thanks.

Recommended Articles