On 26.11.2015 15:32, Ren Wang wrote: > How to get a file or directory property by using API, is it > svn_fs_node_prop()? I was trying to get svn:author (a default property) for > a file from the repository, but the API always returns NULL.
You already got the answer to that question in a previous response: svn:author is a *revision* property, not a *node* property. You should be looking at the properties for the revision in which the file was last changed. -- Brane