獲取當前路徑
bool
getcurrentdir(
char
*filename )
檔案拷貝
intfilecopy
( const
char
*src,
const
char
*dst )
if(result
==copy_ok)}}
//when amount read is < bufsz, copy is done
while
((result
==copy_ok)
&&(amount
==bufsz));
fclose(fi);
fclose(fo);
}delete buf;
return
(result);}
獲取指定目錄下的檔名:
void
getfilesofpath(
char
*path , cstringarray
&strapathes )
while
(findnextfile(hfindfile,
&finddata))
} findclose(hfindfile);
return; }
獲取指定目錄下的檔名(不含路徑)
void
getfiletitlesofpath(
char
*path , cstringarray
&strapathes)
while
(findnextfile(hfindfile,
&finddata))
} findclose(hfindfile);
return
; }
cstring getfiletitlefromfilename(cstring filename, bool ext)
return
filetitle;
}
cstring getfilepathfromfilename(cstring filename)
//判斷是否為數字或字母
//output:
//return false,true
bool isalphanumeric(char* charp,int len){
char *c;
c=charp;
for(int i=0;i
判斷是否為數字
bool
isnumeric(
char
*charp,
intlen){
char*c;
c=charp;
for(
inti=0
;i<
len;i
++){
//printf("%d",isdigit(*c));if(
*c==null ||*
c=='
Android 收集的常用的一些函式
class mytools 根據手機的解析度從 px 畫素 的單位 轉成為 dp public static int px2dip context context,float pxvalue public static byte float2byte float f 翻轉陣列 int len b.l...
VC 6中的一些快捷鍵(陸續補充中。。。)
1.f12 前往定義處 2.f3 查詢檔案中下乙個字串 3.shift f3 查詢檔案中上乙個字串 4.ctrl f3 查詢,如果當前游標在字串上,則選中游標所在的字串,類似ctrl f 5.f5 編譯並通過vc執行 6.ctrl f5 不通過vc,直接執行編譯後的exe檔案 7.shift f5 ...
收集java常用的一些方法
1.判斷任意乙個整數是否素數 判斷任意乙個整數是否素數 param n return boolean public static boolean isprimes int n return true 2.全形字符轉半形字元 全形字符轉半形字元 param qjstr return string pu...