unix "find" command native sorting order

filesystems, find, sorting, unix

Solution

`find` command traversing the files and directories as they appeared in file system.

Test:

find . -maxdepth 1 -name '*' 
ls -Ul

Here,

-U - do not sort; list entries in directory order

Problem

If I use the find-command (no options except -name) - which is the order the output will be sorted in? My own investigation showed it's neither alphabetically nor datetime-ly. Searched the man pages, but I couldn't locate anything related to this. Thanks in advance!

Original source