Lines Matching refs:file_path

151  Function: int change_file_perms(string $file_path, int $count = 1, int $perms = 0755, 
155 $file_path = dir path where file exists
165 function change_file_perms($file_path,
181 $filename = $file_path."/".$name_prefix.$name_suffix.$file_extension;
190 Function: array create_files( string $file_path,
203 $file_path = dir where files will be created
233 function create_files( $file_path,
265 $filename = $file_path."/".$name_prefix.$tmp_name_suffix.$file_extension;
285 $filename = $file_path."/".$name_prefix.$tmp_name_suffix.$file_extension;
303 $return_value['perms_changed'] = change_file_perms($file_path, $count, $permission, $name_prefix,
311 Function: function create_links( $file_path,
325 $file_path = location of the file and where links need to be created
350 function create_links($file_path,
364 $src_filename = $file_path."/".$filename;
369 $linkname = $file_path."/".$link_name_prefix.$tmp_name_suffix.$link_file_extension;
383 $linkname = $file_path."/".$link_name_prefix.$tmp_name_suffix.$link_file_extension;
403 $linkname = $file_path."/".$link_name_prefix.$tmp_name_suffix.$link_file_extension;
419 $return_value['perms_changed'] = change_file_perms($file_path,
449 Function: array delete_files(string $file_path, int $count = 1, string $name_prefix = "file",
452 $file_path = location of the files
462 function delete_files($file_path,
473 $filename = $file_path."/".$name_prefix.$name_suffix.$file_extension;
489 Function: array delete_links( $file_path,
495 $file_path = location of link files
506 function delete_links($file_path,
513 $return_value = delete_files( $file_path,