Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以按特定顺序(例如 0-9 后跟 AZ)从 phing FileSet 获取文件?现在它以完全随机的顺序获取我的编号文件。
<fileset dir="${mydirectory}"> <include name="*" /> </fileset>
<exec command="cd ${mydirectory}/ && echo *" escape="false" outputProperty="myfiles" /> <append destfile="concatenated.txt"> <filelist dir="${mydirectory}" files="${myfiles}" /> </append>