我查了半天,就是沒找到刪除檔案.建立目錄.列出檔案目錄...等等之類的io動作
建立函式庫資料.
有人知道的嗎?
2006-09-16 11:15:59 · 2 個解答 · 發問者 bochan 1 in 電腦與網際網路 ➔ 程式設計
不牽涉到win32 sdk,然後可以在MS dev c++開發環境上順利運作一切檔案.目錄管理的一些函式.
2006-09-16 15:46:56 · update #1
不知道您是在那個平台上寫的?
以Windows平台, Win32 SDK 來說:
刪除檔案:
DeleteFile
The DeleteFile function deletes an existing file.
BOOL DeleteFile( LPCTSTR lpFileName // file name );
建立目錄:
CreateDirectory
The CreateDirectory function creates a new directory. If the underlying file system supports security on files and directories, the function applies a specified security descriptor to the new directory.
BOOL CreateDirectory( LPCTSTR lpPathName,
LPSECURITY_ATTRIBUTES lpSecurityAttributes );
列出檔案目錄:
FindFirstFile
The FindFirstFile function searches a directory for a file whose name matches the specified file name. FindFirstFile examines subdirectory names as well as file names.
HANDLE FindFirstFile( LPCTSTR lpFileName,
LPWIN32_FIND_DATA lpFindFileData );
希望這些是您在找的
2006-09-16 12:42:35 · answer #1 · answered by 阿德 6 · 0⤊ 0⤋
刪檔 remove
建目錄 mkdir
請自行查 MSDN
2006-09-16 12:12:15 · answer #2 · answered by Big_John-tw 7 · 0⤊ 0⤋