vote up 3 vote down star
1

If I wanted to create a string which is guaranteed not to represent a filename, I could put one of the following characters in it on Windows:

\ / : * ? | < >

e.g.

this-is-a-filename.png

?this-is-not.png

Is there any way to identify a string as 'not possibly a file' on Linux?

flag

77% accept rate
Pretty sure '/' at the very least is disallowed (or would be a complete PITA if it wasn't) – Matthew Scharley Aug 21 at 9:56
1  
char *str="foo/bar"; might very well represent a file though – nos Aug 21 at 11:36
Yeah, my question really should have said "path" instead of "filename" – izb Aug 21 at 11:40

2 Answers

vote up 6 vote down check

There are almost no restrictions - apart from '/' and '\0', you're allowed to use anything. However, some people think it's not a good idea to allow this much flexibility.

link|flag
+ it may depend on the file system being used. – hacker Aug 21 at 10:21
+1 Thanks for the link to "Fixing Unix/Linux/POSIX Filenames". It was a really intersting read. – Ludwig Weinzierl Aug 21 at 10:22
The flexibility gets you in trouble because a lot of applications treat filenames as a text string - and you get all sorts of character encoding problems. And that's just the obvious problem with it :) – nos Aug 21 at 11:30
vote up 1 vote down

An empty string is the only truly invalid path name on Linux, which may work for you if you need only one invalid name. You could also use a string like "///foo", which would not be a canonical path name, although it could refer to a file ("/foo"). Another possibility would be something like "/dev/null/foo", since /dev/null has a POSIX-defined non-directory meaning. If you only need strings that could not refer to a regular file you could use "/" or ".", since those are always directories.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.