Changeset 185
- Timestamp:
- 04/18/07 08:54:12 (2 years ago)
- Files:
-
- trunk/classes/phing/system/io/PhingFile.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/classes/phing/system/io/PhingFile.php
r123 r185 395 395 */ 396 396 function exists() { 397 clearstatcache(); 397 398 if ($this->isFile()) { 398 399 return @file_exists($this->path); … … 412 413 */ 413 414 function isDirectory() { 415 clearstatcache(); 414 416 $fs = FileSystem::getFileSystem(); 415 417 if ($fs->checkAccess($this) !== true) { … … 430 432 */ 431 433 function isFile() { 434 clearstatcache(); 432 435 //$fs = FileSystem::getFileSystem(); 433 436 return @is_file($this->path);
