GC_Filesystem_Base::exists()

最后更新于:2021-11-27 16:09:22

GC_Filesystem_Base::exists( string$file)

Checks if a file or directory exists.

参数

$file

(string) (Required) Path to file or directory.

响应

(bool) Whether $file exists or not.

源文件

文件: gc-admin/includes/class-gc-filesystem-base.php

	public function exists( $file ) {
		return false;
	}