Regular Expression for .d files

support
Regular Expression for .d files lubwen  2026-03-17 15:47
 

Hi guys,

I would like use Skyline Runner to import all .d files under D:\Data\SST. However, I can't get the Regular Expression right. Could someone give me a hint?

Following is my arguments:
--import-all=D:\Data\SST\ --import-filename-pattern=[.*.d]

Thank you!

 
 
Nick Shulman responded:  2026-03-17 16:05
Usually you would arrange things so that all of the folders inside of D:\Data\SST are the .d folders that you want to import.
Then, you would not need to use "--import-filename-pattern" at all because you really do want Skyline to import everything that it can find within the "--import-all" folder.

If you needed to do a regular expression for everything that ends in ".d" that would be:
--import-filename-pattern=.*\.d

In a regular expression, ".*" means "match everything" because "." means "any character" and "*" means any quantity.
Then the "\." means "an actual dot".
-- Nick
 
lubwen responded:  2026-03-17 16:17
Thank you so much Nick! This works.
(I need this .d qualifier because there are some .raw files in the same folder that I do not want to import. The .raw files were generated for each .d file because of the LC system we are using.)