xlang
v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
std
FSObject.xcs
浏览该文件的文档.
1
5
@Declare
6
final
class
FSObject
{
7
11
FSObject
();
12
17
FSObject
(
String
path);
18
22
String
getPath
();
23
27
String
getName
();
28
32
bool
isDir
();
33
38
long
openDir
();
39
46
bool
findObject
(
long
hdir,
FSObject
object
);
47
48
53
void
closeDir
(
long
hdir);
54
58
bool
chmod
(
int
mod);
59
60
64
int
getmode
();
65
66
71
bool
remove
();
72
73
79
bool
rename
(
String
newname);
80
81
86
long
getLastModifiedTime
();
87
88
93
long
length
();
94
95
100
bool
mkdir
();
101
102
107
bool
exists
();
108
109
110
115
String
getParentPath
();
116
117
121
String
getExtension
();
122
};
FSObject
文件系统对象 3.1新增
Definition
FSObject.xcs:6
FSObject.FSObject
FSObject()
构造
FSObject.length
long length()
获取文件系统对象长度
FSObject.rename
bool rename(String newname)
重命名文件对象
FSObject.getmode
int getmode()
获取文件权限
FSObject.FSObject
FSObject(String path)
通过路径构造
FSObject.getPath
String getPath()
获取文件系统对象的路径
FSObject.getLastModifiedTime
long getLastModifiedTime()
获取最后修改时间
FSObject.getName
String getName()
获取文件系统对象的名称
FSObject.openDir
long openDir()
打开文件夹
FSObject.exists
bool exists()
对象是否存在
FSObject.chmod
bool chmod(int mod)
改变文件权限
FSObject.closeDir
void closeDir(long hdir)
关闭一个查找ID
FSObject.mkdir
bool mkdir()
创建文件夹
FSObject.isDir
bool isDir()
是否文件夹
FSObject.getExtension
String getExtension()
获取对象扩展名
FSObject.getParentPath
String getParentPath()
获取父路径
FSObject.findObject
bool findObject(long hdir, FSObject object)
查找文件系统对象
String
字符串类
Definition
BuiltinObjects.x:65
制作者
1.9.8