跳转至内容

Gambas/Exist

来自维基教科书,开放的世界中的开放书籍

返回 Gambas

文件或目录是否存在 ?

[编辑 | 编辑源代码]

示例

PUBLIC SUB Button1_Click()
   IF Exist("/bin/bash") = TRUE THEN
        Label1.Text="OK i found Bash"
   END IF
   IF Exist("/bin/bash") = FALSE THEN
        Label1.Text="Error Bash is missing"
   END IF
END

获取系统的根目录/主目录 ?

[编辑 | 编辑源代码]

示例 

'Created : Cijo Jose
'E-mail  : [email protected]
'Job ID  : Junior Software Engineer

PUBLIC SUB Button1_Click()

       dir_name as string 
       dir_name = system.root    ' Will return root folder 
       print dir_name
       dir_name = system.home    ' Will return home folder 
       print dir_name

END

当你点击按钮时,你的Gambas程序会检查Bash是否存在。如果找到了Bash,Label1将显示“OK,我找到了Bash”。如果Bash不存在,Label1将显示“错误,Bash丢失了”。

Gambas.SteveStarr - 2005年8月2日

华夏公益教科书