blob: bfc271eb38938a556ac596248b34aead2b2557ad [file] [log] [blame]
Derek Jones8ede1a22011-10-05 13:34:52 -05001###########
2File Helper
3###########
4
5The File Helper file contains functions that assist in working with files.
6
7.. contents:: Page Contents
8
9Loading this Helper
10===================
11
12This helper is loaded using the following code
13
14::
15
16 $this->load->helper('file');
17
18The following functions are available:
19
20read_file('path')
21=================
22
23Returns the data contained in the file specified in the path. Example
24
25::
26
27 $string = read_file('./path/to/file.php');
28
29The path can be a relative or full server path. Returns FALSE (boolean) on failure.
30
31.. note:: The path is relative to your main site index.php file, NOT your
32 controller or view files. CodeIgniter uses a front controller so paths
33 are always relative to the main site index.
34
35If your server is running an `open_basedir` restriction this function might not work if you are trying to access a file above the calling script.
36
37write_file('path', $data)
38=========================
39
40Writes data to the file specified in the path. If the file does not exist the function will create it. Example
41
42::
43
44 $data = 'Some file data';
45 if ( ! write_file('./path/to/file.php', $data))
46 {     
47 echo 'Unable to write the file';
48 }
49 else
50 {     
51 echo 'File written!';
52 }
53
54You can optionally set the write mode via the third parameter
55
56::
57
58 write_file('./path/to/file.php', $data, 'r+');
59
60The default mode is wb. Please see the `PHP user guide <http://php.net/fopen>`_ for mode options.
61
62Note: In order for this function to write data to a file its file permissions must be set such that it is writable (666, 777, etc.). If the file does not already exist, the directory containing it must be writable.
63
64.. note:: The path is relative to your main site index.php file, NOT your
65 controller or view files. CodeIgniter uses a front controller so paths
66 are always relative to the main site index.
67
68delete_files('path')
69====================
70
71Deletes ALL files contained in the supplied path. Example
72
73::
74
75 delete_files('./path/to/directory/');
76
77If the second parameter is set to true, any directories contained within the supplied root path will be deleted as well. Example
78
79::
80
81 delete_files('./path/to/directory/', TRUE);
82
83.. note:: The files must be writable or owned by the system in order to be deleted.
84
85get_filenames('path/to/directory/')
86===================================
87
88Takes a server path as input and returns an array containing the names of all files contained within it. The file path can optionally be added to the file names by setting the second parameter to TRUE.
89
90get_dir_file_info('path/to/directory/', $top_level_only = TRUE)
91===============================================================
92
93Reads the specified directory and builds an array containing the filenames, filesize, dates, and permissions. Sub-folders contained within the specified path are only read if forced by sending the second parameter, $top_level_only to FALSE, as this can be an intensive operation.
94
95get_file_info('path/to/file', $file_information)
96================================================
97
98Given a file and path, returns the name, path, size, date modified. Second parameter allows you to explicitly declare what information you want returned; options are: `name`, `server_path`, `size`, `date`, `readable`, `writable`, `executable`, `fileperms`. Returns FALSE if the file cannot be found.
99
100.. note:: The "writable" uses the PHP function is_writable() which is known
101 to have issues on the IIS webserver. Consider using fileperms instead,
102 which returns information from PHP's fileperms() function.
103
104get_mime_by_extension('file')
105=============================
106
107Translates a file extension into a mime type based on config/mimes.php. Returns FALSE if it can't determine the type, or open the mime config file.
108
109::
110
111 $file = "somefile.png";
112 echo $file . ' is has a mime type of ' . get_mime_by_extension($file);
113
114
115.. note:: This is not an accurate way of determining file mime types, and
116 is here strictly as a convenience. It should not be used for security.
117
118symbolic_permissions($perms)
119============================
120
121Takes numeric permissions (such as is returned by `fileperms()` and returns standard symbolic notation of file permissions.
122
123::
124
125 echo symbolic_permissions(fileperms('./index.php')); // -rw-r--r--
126
127octal_permissions($perms)
128=========================
129
130Takes numeric permissions (such as is returned by fileperms() and returns a three character octal notation of file permissions.
131
132::
133
134 echo octal_permissions(fileperms('./index.php')); // 644
135