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.
phing FileSetから特定の順序(たとえば、0〜9の後にAZが続く)でファイルを取得することは可能ですか?現在、番号が付けられたファイルを完全にランダムな順序で取得しています。
<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>