vote up 6 vote down star
1

I try to be grammatically correct in my naming*. I've always used filename instead of file*N*ame. The java convention also seems to use this, but FxCop prefers fileName.

There's a discussion on WikiPedia about it. The more I read, the more I feel I'm right (which is quite usual! :) ). Does anyone have a definitive answer or is this merely something subjective?

Cheers,

Steve

* I just hope theres know grammer errors in this post!

flag

25% accept rate
The anonymous downvoter strikes again. This is a programming question and it is a question without an obvious, unanimous answer, why downvote it? I'll give it an upvote. – Arnold Spence Apr 12 at 18:07
Possibly because exactly that. There is no real answer which might satisfy this question fully. – shoosh Apr 12 at 18:15
@shoosh: Discussion is good though... – Lucas McCoy Apr 12 at 18:17
Questions without obvious answers can produce some great input. – Arnold Spence Apr 12 at 18:20
The naming conventions for Java and .Net are different though, perhaps adding the .Net tag to this would be appropriate. – _ande_turner_ Apr 13 at 7:24

7 Answers

vote up 12 vote down

Lower camel case is recommended for fields and parameters.

Example 1:

fileName // for fields, parameters etc.
FileName // for properties, class names etc.

Generally fileName is used and NOT filename; you can verify that by reading source codes of open source stuff created by Microsoft, such as Enterprise Library.

Reasons:

  1. The main point behind this is that names are more readable in this case.
  2. Also this approach adds consistency when several parameters (fields, variables..) are used in the same method (class..) and the with same prefix "file", as demonstrated below:
  3. ...there are a few other reasons, but they are more subjective.

Example 2:

fileName, fileSize... // instead of filename AND fileSize

See also:

For a full set of naming convention rules, I recommend checking this book:

And also check some stuff at IDesign.net

link|flag
why? (padding, 10 chars) – jalf Apr 12 at 18:06
@Koistya - you're missing the point, the poster is asking about whether "filename" (1 word) is better than "file name" (2 words), not about whether to use camel case or not. – Dan C. Apr 12 at 18:54
@Dan, I don't. Even if put camel case apart, "fileName" is recommended way for naming a parameter, not "filename". – Koistya Navin Apr 12 at 19:13
@Koistya: You still give no reason why we should use fileName instead of filename. Good compilation of information, though. – Treb Apr 12 at 20:31
I always wonder what the convention is for concatenating, e.g. PathandFileName or PathAndFileName? – Rob Sanders Apr 15 at 6:43
show 3 more comments
vote up 10 vote down

As far as I am concerned,

thisIsMuchMoreReadable than readingthis.

link|flag
1  
But is ReadAble more readable than Readable? That's a bit closer to the point. Read is a word, Able is a word and Readable is a word. So assuming the first letter of each word is capitalized, how should we write it? – jalf Apr 12 at 18:05
2  
SoIBetYouThinkThisIsSuperReadable, well_I_actualy_think_you_are_wrong – David Lehavi Apr 12 at 20:14
vote up 6 vote down

'filename' assumes that this word describes a singular object like 'cow' or 'chair'
'fileName' assumes that this is a complex object, that there is an object called file and that this object describes the name of that file.

Two philosophical approaches, take your pick.

link|flag
vote up 3 vote down

There can be no real right or wrong here.

This is something that is purely subjective and relates completely to the community you are working in. If FxCop and StyleCop and the .net code that you regularly encounter is using fileName, then use fileName. If it is using something else, then use whatever that is.

Your first priority should probably be to be consistent to the pattern in your own code and then consistent with your community.

In this particular case, .net Reflector shows a lot of .net code using fileName so I would go with that pattern personally.

If you were in the java world and running PMD and checkstyle and their apis made frequent use of filename, then I would go with that.

In addition to the wikipedia naming article, there is also The Practice of Programming by Kernighan and Pike. The first chapter in it touches on a lot of naming and code consistency issues.

link|flag
vote up 2 vote down

I think the answers here are spanning two issues.

  • 'FileName' vs 'Filename' (should 'name' be a separate word)

    and

  • 'fileName' vs 'FileName' (should first character be lower case).

In most cases, I prefer to treat this word as a single whole word 'filename'. I also prefer starting variables/methods with lower case for easier code completion menu navigation.

I guess the issue of camel case is here too which I think should be used to distinguish multi-word names.

link|flag
vote up 1 vote down

Isn't the obvious answer that FxCop is an automated tool? It recognizes that "name" is a word, so it suggests starting it with a capital N. We happen to know that "filename" is also a word, and so only the first F should be capitalized.

link|flag
vote up 0 vote down

If you are writing c/c++ there is a strong tendency to use names that people can actually read; i.e. filename is good, and so is yet_another_file_name (assuming you are not considering filename as a proper english word - I usually do).

See google coding standards

link|flag

Your Answer

Get an OpenID
or

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