0

You hear terms like "classpath", "build path", etc. all the time, referencing a list of directories that something will look in for a particular reason.

Does anybody know the technical name for each item in these paths? Path Element?!?!

Yes - this is a programming question! I'm writing a classpath explorer object in Java and would like to know what to name my POJO property:

public class ClassPathExplorer
{
    private List<URI> pathElements; // ??????
}
IAmYourFaja
  • 55,468
  • 181
  • 466
  • 756

2 Answers2

1

I believe it is called as path or resourcePath

Aravind Yarram
  • 78,777
  • 46
  • 231
  • 327
0

Generally they are called "File Paths".

OS specific notes

Being closely associated with the file system, the command-line Classpath syntax depends on the operating system. For example:

on all Unix-like operating systems (such as Linux and Mac OS X), the directory structure has a Unix syntax, with separate file paths separated by a colon (":").

on Windows, the directory structure has a Windows syntax, and each file path must be separated by a semicolon (";").

Look at wikipedia page.

dash1e
  • 7,677
  • 1
  • 30
  • 35