Lines Matching refs:file_path
7 $file_path = __DIR__;
10 var_dump( disk_total_space($file_path."/..") );
13 $return_value = disk_total_space($file_path);
19 mkdir($file_path.$dir);
23 $file_path.$dir,
24 $file_path."/.".$dir,
27 $file_path."".$dir."/",
28 $file_path."/.".$dir."/",
31 $file_path.$dir."//",
32 $file_path."/.".$dir."//",
33 $file_path."/./".$dir."//",
36 $file_path.$dir.chr(0),
37 $file_path."/.".$dir.chr(0),
38 ".".chr(0).$file_path.$dir,
39 ".".chr(0).$file_path.$dir.chr(0)
56 var_dump( disk_total_space(b"$file_path") );
62 $file_path = __DIR__;
63 rmdir($file_path."/disk_total_space");