On Wednesday, July 3, 2019 at 7:21:53 PM UTC-4, steeple ian wrote: > > If I want to copy_once an entire folder containing mixed type files and > sub folders, is there a syntax for that or do I have to list each wild-card > file type and sub-folder? >
did you try it? no magic syntax, just what you would expect: given a file 'a', directory 'b', and directory 'c', the directive: copy_once = a, b, c/*.txt will copy the file 'a', the directory 'b' and all of its contents, and only files that end in '*.txt' from directory 'c' if you experience other behavior, please report it. if some of the files/directories that feed your skin change, for example, by some mechanism outside of weewx, then use the `copy_always` directive for those assets. m -- You received this message because you are subscribed to the Google Groups "weewx-development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-development/0790f385-ca3b-44bd-9000-4af2b9785281%40googlegroups.com.
