Feature Request - Fs support
Closed this issue · 2 comments
facferreira commented
I just realized that the fs support (CELL_FS) is incomplete, it doesn't has support to see if a path is a file or a directory.
Jiboo commented
http://linux.die.net/man/2/stat
Does stat on path and S_ISDIR on st_mode work?
facferreira commented
I just checked out and realized that when it is a file it returns 2 and when it is a directory returns 1.