当前位置: 技术问答>linux和unix
小妹儿向大家请教个问题--谢谢
来源: 互联网 发布时间:2017-04-15
本文导语: To ALL 我用ioctl 修改文件的属性。代码如下: #include #include #include #include #include #include #include #include using namespace std; char* diskname="/home/biz/TEST/aa"; int main() { int fd = open(diskname,O_RDONLY); if(-1 == fd) { perror("...
To ALL
我用ioctl 修改文件的属性。代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
char* diskname="/home/biz/TEST/aa";
int main()
{
int fd = open(diskname,O_RDONLY);
if(-1 == fd)
{
perror("open");
return 0;
}
else
{ //FS_COMPRBLK_FL //FS_COMPR_FL
if(ioctl(fd,FS_IOC_SETFLAGS,FS_COMPR_FL) >= 0) {
cout
我用ioctl 修改文件的属性。代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
char* diskname="/home/biz/TEST/aa";
int main()
{
int fd = open(diskname,O_RDONLY);
if(-1 == fd)
{
perror("open");
return 0;
}
else
{ //FS_COMPRBLK_FL //FS_COMPR_FL
if(ioctl(fd,FS_IOC_SETFLAGS,FS_COMPR_FL) >= 0) {
cout