Created
February 10, 2010 12:39
-
-
Save 10sr/300269 to your computer and use it in GitHub Desktop.
フォルダを受け取ってサブフォルダ含めファイルのリストを出すahk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rootdir = %1% ;例えば引数からとる | |
| files = | |
| SetWorkingDir, %rootdir% | |
| Loop, *.* , 0 , 1 | |
| files = %files% "%A_LoopFileLongPath%" %A_Space% ;ここを変えれば区切りを変えれる。例えば`nとか | |
| msgbox,%files% ;%files%に出力 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment