Created
March 13, 2016 06:32
-
-
Save FGFW/7bb26a59d93e039d6fbb to your computer and use it in GitHub Desktop.
Julia列出文件名-文件大小.jl
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
#Julia列出文件名-文件大小.jl | |
#http://bbs.bathome.net/thread-39660-2-1.html | |
#julia 版 codegay 2016年3月13日 13:35:54 | |
for r=readdir() | |
f=stat(r).size | |
println("文件名:$r $f 字节"); | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment