简单的linux下的文件以及目录操作封装

本文介绍了一个用于Linux系统的文件操作API,包括目录遍历、创建、删除等基本功能,并提供了具体的实现代码示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#ifndef    LINUXIO_H
#define   LINUXIO_H
#include 
<vector>
#include 
<string>

enum FILETYPE{ZFQ_DIR,ZFQ_FILE};

typedef 
struct{
    std::
string name;
    FILETYPE type;
}
DirItem;

class LinuxIO
{
public:
    LinuxIO(
void);
public:
    
~LinuxIO(void);
public:
    
static bool Dir(char* path,std::vector<DirItem>& list);
    
static bool MkDir(char* path);
    
static bool Remove(char* path);
    
static bool RmDir(char* path);

}
;


#endif
#include "LinuxIO.h"
#include 
<dirent.h>
#include 
<stdio.h>
#include 
<unistd.h>
#include 
<fcntl.h>
#include 
<limits.h>

LinuxIO::LinuxIO(
void)
{
}


LinuxIO::
~LinuxIO(void)
{
}


bool LinuxIO::Dir( char* path,std::vector<DirItem>& list )
{
    
if(access(path,0)==-1)
       
return false;
    
struct dirent* ent = NULL;
    DIR 
*pDir;
    pDir
=opendir(path);
    
while ((ent=readdir(pDir))!=NULL)
    
{
        
if( strcmp(ent->d_name, ".")==0 || strcmp(ent->d_name, "..")==0 )
        
{
            
continue;
        }
 
        
if (ent->d_type==8)
        
{
            DirItem temp;
            temp.name
=(std::string)ent->d_name;
            temp.type
=ZFQ_FILE;
            list.push_back(temp);
        }

        
else
        
{
            DirItem temp;
            temp.name
=(std::string)ent->d_name;
            temp.type
=ZFQ_DIR;
            list.push_back(temp);
        }

    }

    
return true;
}


bool LinuxIO::MkDir( char* path )
{
    
if(mkdir(path,S_IRWXU)==0)
        
return true;
    
else
        
return false;
}


bool LinuxIO::Remove( char* path )
{
    
if(remove(path)==0)
        
return true;
    
else
        
return false;
}


bool LinuxIO::RmDir( char* path )
{
    
if(access(path,0)==-1)
        
return false;
    std::vector
<DirItem> list;
    Dir(path,list);
    std::vector
<DirItem> fullnamelist;
    
char namebuffer[PATH_MAX];
    strcpy(namebuffer,path);
    strcat(namebuffer,
"/");
    
int i;
    
for(i=0;i<(int)list.size();i++)
    
{
        
char tempbuffer[PATH_MAX];
        strcpy(tempbuffer,namebuffer);
        strcat(tempbuffer,list[i].name.c_str());
        
if(list[i].type==ZFQ_FILE)
            Remove(tempbuffer);
        
else
            RmDir(tempbuffer);
    }

    rmdir(path); 
    
return true;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值