Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,19 @@
|
|||
result = ReadFile(#PB_Any, "input.txt")
|
||||
If result>0 : Debug "this local file exists"
|
||||
Else : Debug "result=" +Str(result) +" so this local file is missing"
|
||||
EndIf
|
||||
|
||||
result = ReadFile(#PB_Any, "/input.txt")
|
||||
If result>0 : Debug "this root file exists"
|
||||
Else : Debug "result=" +Str(result) +" so this root file is missing"
|
||||
EndIf
|
||||
|
||||
result = ExamineDirectory(#PB_Any,"docs","")
|
||||
If result>0 : Debug "this local directory exists"
|
||||
Else : Debug "result=" +Str(result) +" so this local directory is missing"
|
||||
EndIf
|
||||
|
||||
result = ExamineDirectory(#PB_Any,"/docs","")
|
||||
If result>0 : Debug "this root directory exists"
|
||||
Else : Debug "result=" +Str(result) +" so this root directory is missing"
|
||||
EndIf
|
||||
Loading…
Add table
Add a link
Reference in a new issue