Gregory Heytings writes: >>>> How one convert the output of (nth 8 (file-attributes >>>> "/home/user")) to numeric mode? >>> >>> (file-modes "/home/user") >> >> Yes, thanks I know this one, what I want to convert is >> e.g. "-rwxr-x---" to number. >> > > (defun symbolic-mode-to-number (mode) > (string-to-number > (replace-regexp-in-string > "[^0]" "1" > (string-replace "-" "0" mode)) > 2)) Nice! I never used the BASE argument of string-to-number probably due to my catastrophic math level :-), however this is very basic and doesn't cover modes like "-rwxrwxrwt" or "-rwsr-xr-x". I already wrote the needed functions for my needs (helm), however what I had like is to clarify the usage of `file-modes-symbolic-to-number' in docstring (examples?). As Andrea pointed the MODES argument handle (+-=) like chmod would do i.e. the function returns the numeric mode that for example chmod would set on a file. Once you know it that's fine , you remove the "-" in MODES like read-file-modes does otherwise you may think it interpret the mode that a file already has. Thanks. -- Thierry