- Notifications
You must be signed in to change notification settings - Fork 167
Open
Labels
Description
Describe the feature
io.copy support wildcard character or file list, for example:
io.copy("*.py","/")
io.copy(["a.py","b.py"],"/")
Why do you need this feature?
Copy multiple files of the same type, very redundant.
now:
io.copy("app.py", "/") io.copy("args.py", "/") io.copy("gen.py", "/") io.copy("strings.py", "/") io.copy("styles.py", "/") io.copy("utils.py", "/") expected:
io.copy("*.py", "/") or
io.copy(["a.py","b.py"],"/") Additional context
No response
Reactions are currently unavailable