What is a widely accepted term for a string variable that would probably contain a file path and file name?

Posted by Peter Turner on Programmers See other posts from Programmers or by Peter Turner
Published on 2012-05-30T15:12:29Z Indexed on 2012/05/30 16:58 UTC
Read the original article Hit count: 329

Filed under:
|
|

For functions that need to index files in a directory and rename them FileName0001, FileName0002, etc... I often need to write a function that splits the file name from the file path and rename the file. When I put the file name and file path back together, I don't have a very good name for the variable that contains both of them and I usually just wind up concatenating them every time I want to use them (usually using them as parameters for functions labeled either filename or filepath) so I never really know what I'm doing until I notice a lot of files being written in the same directory as my binaries.

Anyway, what do I call a file name and a file path? I don't want to call it File, because that usually means the binary information behind the file. I don't want to call it URI because that usually means I've got some sort of protocol, which I don't. I just want a good way to denote "c:\somedir\somedir\somedir\somefile.txt" so as to deconfuse this mess I've just realized I'm in.


Please don't just list your personal preference. I think an excellent answer should "'site its sources". (as in, provide a link to a repository with a good example of the code being used as I described)

© Programmers or respective owner

Related posts about naming

Related posts about coding-standards