Skip to content

Instantly share code, notes, and snippets.

@FGFW
Created March 13, 2016 06:32
Show Gist options
  • Save FGFW/7bb26a59d93e039d6fbb to your computer and use it in GitHub Desktop.
Save FGFW/7bb26a59d93e039d6fbb to your computer and use it in GitHub Desktop.
Julia列出文件名-文件大小.jl
#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