2013-10-01 2 views

답변

0

cakephp 파일 및 폴더 API를 참조하면 File::lastChange() 메서드를 사용하여 내 문제를 해결할 수있었습니다. 도움을 주셔서 감사합니다. 다음은 예입니다.

App::uses('Folder', 'Utility'); 
App::uses('File', 'Utility'); 
$file = new File('/tmp/test.txt'); 
//the following will return an epoch time, can be formatted by date method 
echo $file->lastChange(); 
관련 문제