//////獲得當前絕對路徑
/// ///
指定的路徑
///絕對路徑
//非web程式引用
return
}}
//////刪除單個檔案
/// ///
檔案相對路徑
public
static
bool deletefile(string
_filepath)
if(file.exists(fullpath))
return
false
; }
//////
刪除上傳的檔案(及縮圖)
/// ///
public
static
void deleteupfile(string
_filepath)
原圖if
(file.exists(fullpath))
if (_filepath.lastindexof("
/") >= 0
) }}
//////
刪除指定資料夾
/// ///
檔案相對路徑
public
static
bool deletedirectory(string
_dirpath)
if(directory.exists(fullpath))
return
false
; }
//////
修改指定資料夾名稱
/// ///
舊相對路徑
///新相對路徑
///bool
public
static
bool movedirectory(string old_dirpath, string
new_dirpath)
if(directory.exists(fulloldpath))
return
false
; }
//////
返回檔案大小kb
/// ///
檔案相對路徑
///int public
static
int getfilesize(string
_filepath)
if(file.exists(fullpath))
return0;
}//////
返回副檔名,不含「.」
/// ///
檔案全名稱
///string
public
static
string getfileext(string
_filepath)
if (_filepath.lastindexof("
.") > 0
)
return"";
}//////
返回檔名,不含路徑
/// ///
檔案相對路徑
///string
public
static
string getfilename(string
_filepath)
//////
檔案是否存在
/// ///
檔案相對路徑
///bool
public
static
bool fileexists(string
_filepath)
return
false
; }
C 對檔案操作
c 建立目錄 建立目錄c sixage directoryinfo d directory.createdirectory c sixage d1指向c sixage sixage1 directoryinfo d1 d.createsubdirectory sixage1 d2指向c sixage...
C 對檔案操作小結
private void button2 click object sender,eventargs e private void button1 click object sender,eventargs e 流檔案操作 filestream fs new filestream filepath,...
C 對檔案的操作
c 對檔案的操作方式有兩種 1 通過file類對檔案進行操作 2 通過檔案流對檔案進行操作 file類是乙個靜態類 因此可以直接使用類名去呼叫方法 有以下方法對檔案進行操作 1 exist 判斷指定路徑下的檔案是否存在,形參為指定路徑,存在則返回true 不存在則返回false 2 move 將原來...