我确定某些平台不会对“此文件夹”和“此文件夹的父级”使用此命名约定,但是Java是否会将其抽象出去并在所有平台上返回预期结果?
File f = new File("."); //is this the current folder, always, no matter the file system?
File f = new File("..");//equivalent to above, but for the parent folder
此外,那些路径符号总是相对于jar文件所在的文件夹,或者它们有时(在某些其他系统中)代表其他地方,例如,也许当前文件夹可能被认为是文件夹所在JVM可执行文件驻留。