[5] Constructing a Filename Path

[5] Constructing a Filename Path

A File object is used to represent a filename. Creating the File object has no effect on the file system; the filename need not exist nor is it created.

On Windows, this example creates the path\a\b. On Unix, the path would be /a/b.

				
						 String path = File.separator + "a" + File.separator + "b";
				
		


|----------------------------------------------------------------------------------------|
                           版权声明  版权所有 @zhyiwww
            引用请注明来源 http://www.blogjava.net/zhyiwww   
|----------------------------------------------------------------------------------------|

你可能感兴趣的:([5] Constructing a Filename Path)