cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
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.