遍歷Symbian某目錄下的所有檔案

2021-04-14 09:12:42 字數 821 閱讀 7275

1.串轉換成數字

tbuf16<20> buf(_l( "123" ) );

tlex lex( buf );

tint inum;

lex.val( inum );

2.數字轉換成串

tbuf16<20> buf;

tint inum = 20;

buf.format( _l( "%d" ) , inum  );

3.將symbian串轉換成char串

char* p = null;

tbuf8<20> buf( _l( "aaaaa" ) );

p = (char *)buf.ptr();

4.utf-8轉換成unicode

cnvutfconverter::converttounicodefromutf8( ibuf16 , ibuf8 );

5.unicode轉換成utf-8

cnvutfconverter::convertfromunicodetoutf8( ibuf8 , ibuf16 );

6.將char串轉換成symbian串

遍歷某目錄下所有子檔案

win32 find data 關於檔案的全部屬性資訊。總計有以下以下9種 檔案的標題名 檔案的屬性 唯讀 存檔,隱藏等 檔案的建立時間 檔案的最後訪問時間 檔案的最後修改時間 檔案大小的高位雙字 檔案大小的低位雙字 保留 保留。在這裡只有檔案標題名和檔案的長度可以通過cfile模擬較方便的獲得,而...

php遍歷windows下中文目錄下的所有檔名

有時需要遍歷windows下中文目錄下的所有的檔名,使用utf 8編碼的檔案有時會出現亂碼,並且不能成功的執行,這時需要對檔案的編碼進行一下轉換,使用scandir這個函式的時候會連同目錄一下列出來,大家可以通過is dir 這個函式來 做乙個判斷,我使用目錄下所的檔案都有擴充套件所以只做了乙個簡單...

遞迴遍歷目錄下的檔案

關於目錄檔案的分析 lib src vim lib,src,都是目錄檔案,而vim是普通檔案 opendir 返回乙個dir readdir dir 返回乙個dirent 結構的指標 struct dirent long d ino inode number 索引節點號 off t d off of...