📄 e013. constructing a filename path.txt
字号:
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";
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -