| 1: | <?php |
| 2: | |
| 3: | |
| 4: | |
| 5: | |
| 6: | |
| 7: | class FileIO { |
| 8: | public static function fileExists($filePath){} |
| 9: | public static function fileCreate($filePath){} |
| 10: | public static function fileCopy($src,$dst,$overwrite=false){} |
| 11: | public static function fileCopyChanges($src,$dst){} |
| 12: | public static function isSrcFileChange($src,$dst){} |
| 13: | public static function fileWrite($fileURL,$data){} |
| 14: | public static function fileAppend($fileURL,$data){} |
| 15: | public static function fileRead($fileURL){} |
| 16: | public static function getFileExtentionName($fileURL){} |
| 17: | public static function getFileName($fileURL){} |
| 18: | public function isFileExpired($filename,$ttl=0){} |
| 19: | public function openFileBytes($filepath){} |
| 20: | } |
| 21: | ?> |