Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created December 22, 2016 04:12
Show Gist options
  • Save zhouqiang-cl/f87292e9069a630c84baba779c5c1a87 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/f87292e9069a630c84baba779c5c1a87 to your computer and use it in GitHub Desktop.
common lisp 的函数 FILE-AUTHOR
语法
file-author pathspec => author
参数和值
pathspec --- 一个路径指示符
author --- 一个 string 或者 nil
描述
找文件的作者, 如果找不到返回 nil
代码
* (directory "y")
(#P"/Users/zhouqiang/y")
* (file-author "y")
"zhouqiang"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment