We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
io.copy support wildcard character or file list, for example: io.copy("*.py","/") io.copy(["a.py","b.py"],"/")
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"],"/")
No response
The text was updated successfully, but these errors were encountered:
I think it can copy the directory. But it doesn't support the ignore file.
Sorry, something went wrong.
No branches or pull requests
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:
expected:
or
Additional context
No response
The text was updated successfully, but these errors were encountered: