标签: c permissions
我正在尝试将文件的权限作为四位数字。 我创建了一个权限为0777的文件lol
struct stat st; stat("lol", &st); printf("%d",st.st_mode);
当我测试时,结果不是0777.为什么?