Windows檔案操作基礎代碼

來源:互聯網
上載者:User

Windows檔案操作基礎代碼

 

    Windows下對檔案進行操作使用的一段基礎代碼File.h,首先是File類定義:

#pragma once
#include<Windows.h>
#include<assert.h>
class File
{
    HANDLE hFile;//檔案控制代碼
public:
    void open(LPCWSTR fileName);
    int read(char*data,int len);
    void movefp(long disp,int type);
    int write(char*data,int len);
    void close();
    static void copy(LPCWSTR src,LPCWSTR des);
    static void move(LPCWSTR src,LPCWSTR des);
    static void del(LPCWSTR name);
};

   File類的實現如下:

   1.開啟檔案:這裡檔案開啟檔案為讀寫、檔案不存在則建立。

void File::open(LPCWSTR fileName)
{
    //使用CreatFile以讀寫方式開啟一個檔案
    hFile=CreateFile(fileName,//檔案名稱
        GENERIC_WRITE|GENERIC_READ,//讀寫權限
        FILE_SHARE_READ|FILE_SHARE_WRITE//共用讀寫權限
        ,NULL//安全特性
        ,OPEN_ALWAYS//CREATE_NEW-存在出錯,CREATE_ALWAYS-改寫存在檔案,OPEN_EXISTING-不存在出錯,OPEN_ALWAYS-不存在建立
        //TRUNCATE_EXISTING-將現有檔案長度縮短為0
        ,FILE_ATTRIBUTE_NORMAL//FILE_ATTRIBUTE^X,X_ARCHIVE-標記歸檔,X_NORMAL-預設,X_HIDDEN-隱藏,X_READONLY-唯讀,X_SYSTEM-系統
        ,NULL);
    assert(hFile!=INVALID_HANDLE_VALUE);
}

   2.關閉檔案:

void File::close()
{
    CloseHandle(hFile);
}

   3.讀檔案:

int File::read(char*data,int len)
{
    DWORD dwWrite;
    bool rslt=ReadFile(hFile,data,len,&dwWrite,NULL);
    assert(rslt);
    return dwWrite;
}

   4.寫檔案:

int File::write(char*data,int len)
{
    DWORD dwWrite;
    bool rslt=WriteFile(hFile,data,len,&dwWrite,NULL);
    assert(rslt);
    return dwWrite;
}

   5.移動檔案指標:

void File::movefp(long disp,int type)
{
    SetFilePointer(hFile,disp,NULL,type);
}

   6.其他檔案操作API,複製、移動、刪除(可以擴充):

void File::copy(LPCWSTR src,LPCWSTR des)
{
    assert(CopyFile(src,des,true));
}
void File::move(LPCWSTR src,LPCWSTR des)
{
    assert(MoveFile(src,des));
}
void File::del(LPCWSTR name)
{
    assert(DeleteFile(name));
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.