i am wondering regarding Java: is there a file extension separator?
like *.doc, the "." being the question.
i know there is a line.separator. just would like my app to be portable so i need to know.
thank you.
|
i am wondering regarding Java: is there a file extension separator? like *.doc, the "." being the question. i know there is a line.separator. just would like my app to be portable so i need to know. thank you. |
||||
|
|
|
The Windows systems still use the convention (even though you can create a filename with as many periods as you wish) as the extension is still used to file type and association. Linux/Unix/MacOS X tend to rely on magic numbers more than file extensions although there are conventions used there too (eg So basically there is no concept of "file separator". Not in a universal sense anyway. |
|||
|
|