常用的檔案操作函式

2021-09-25 02:16:58 字數 1137 閱讀 5849

1. 獲得檔名:

basename — 返回路徑中的檔名部分

$path = 「/home/cate/index/index2.php」;\

f il

e=ba

sena

me

(file = basename(

file=b

asen

ame(

path);\

echo $file; //結果index2.php

2. 獲得目錄名

dirname — 返回路徑中的目錄部分

$path = 「/home/cate/index/index2.php」;\

f il

e=di

rnam

e(

file = dirname(

file=d

irna

me(path);\

echo $file;//結果/home/cate/index

3.得到路徑關聯陣列

pathinfo() 函式以陣列的形式返回關於檔案路徑的資訊。

返回的陣列元素如下:

pathinfo(path,options)

| path | 必需。規定要檢查的路徑。 |

| options | 可選。規定要返回的陣列元素。預設是 all。

可能的值:

4.filesize取得檔案大小

filesize ( string $filename )

返回檔案大小的位元組數,如果出錯返回false並生成一條e_warning級的錯誤。

判斷目錄是否存在

$lujing = 「./nihao/wohao」;

if(!is_dir($liujing)){

mkdir(iconv("utf-8", "gbk", $lujing),0777,true);
判斷檔案是否存在

file_exists(path);

常用的幾個檔案操作函式

include includeint main include int main include int main void printf s n buf 在輸出時需要新增換行符 return 0 include int main void while c fgetc fp eof fclose f...

C檔案操作常用函式

函式名 fseek 功 能 重定位流上的檔案指標 用 法 int fseek file stream,long offset,int fromwhere 程式例 include long filesize file stream int main void long filesize file st...

C 檔案操作常用函式

c 檔案操作常用函式 fopen fclose ftell fread fseek fopen 功能 開啟檔案 定義函式 file fopen const char path,const char mode 輸入引數 path字串包含欲開啟的檔案路徑及檔名 mode字串則代表著流模式。常見模式為r ...