注:未知原因,创建出一个危险的文件
Posted 看,未来
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注:未知原因,创建出一个危险的文件相关的知识,希望对你有一定的参考价值。
一个很奇葩的现象出现在我的面前:
昨天用open函数创建文件并保存关闭之后,文件出现了 S 和 T 的权限位,一开始不知道这两个权限位是什么,一查才知道这两个权限位不是什么好东西。
但是,奇怪的是,这个bug不好复现,什么时候出现全看它心情。。。
昨天备课的时候好好的,上课的时候就出bug了,今天想复现,又好好的。
#include<sys/types.h>
#include<sys/stat.h>
#include<iostream>
#include<unistd.h>
#include<fcntl.h>
using namespace std;
int main(){
char* buf = new char[8]; //can't alloc 1024?
int fd = open("./fileIO.txt", O_CREAT|O_RDWR|O_APPEND);
//chmod("fileIO.txt",644);
//const char* filename
//flag O_CREAT|O_RDONLY|O_WRONLY|O_RDWR|O_APPEND
if(fd<0){
cout<<"open file failed!"<<endl;
}
int m = write(fd,"test\\n",50);
//int file_id
//char* buf
//int lenth
//return real lenth
cout<<m<<endl;
close(fd);
fd = open("./fileIO.txt",O_RDONLY);
int n = read(fd,buf,500);
//char* buf (empty buf)
cout<<n<<endl;
printf("%s\\n",buf);
close(fd);
return 0;
}
经验:以后创建文件的时候,要顺道把权限位设置了,用代码设置,不要手动
以上是关于注:未知原因,创建出一个危险的文件的主要内容,如果未能解决你的问题,请参考以下文章
使用vue学习three.js之渲染后期处理-使用SepiaShader定制效果创建出类似乌贼墨的效果
Glide.with(Activity) 也是让 Activity 创建出一个 Fragment ,在 Fragment 的各个生命周期方法内插入回调函数后,执行代码来实现的