I'm trying to find all subfolders in a file's path that have 'others exec' permission.
I've tried to use strtok(path_str,"/") to break the path string, but when using stat() for the sub-directories of the root of the process I run, I get the "not a file or folder" error.
Any suggestions on how I can overcome this error?
stat(). I bet there is a mistake in your string-splitting algorithm. By the way, check out thedirname()function. – atzz Dec 30 '10 at 9:03errnoyou encounter? A quick reading suggests that you are naively stat()ing the individual component names of your path, that is, tokenising "path/to/something" and stat()ing "path" (ok), "to" (ENOENT, probably), and "something" (ENOENT, probably). Without code, however, it's all guesswork. – pilcrow Dec 30 '10 at 10:16