📜  常规检查文件是否存在 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:23.379000             🧑  作者: Mango

代码示例1
def filePath = "/tmp/file.json"

def file = new File(filePath)

assert file.exists() : "file not found"