查看 Windows 中的 chmod 权限?
我正在本地环境中开发一个网站,并且正在运行 Windows。我需要设置 chmod 文件权限(例如 666、777 等)。 Windows 中有没有办法以 chmod 数字的形式查看文件权限?
谢谢
I'm developing a site on my local environment and I'm running windows. I need to set chmod
file permissions (eg 666, 777, etc). Is there a way in Windows to see file permissions as chmod numbers?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 文件安全模型与(旧的?)简单的 Unix 方法有很大不同。
在 Windows 中,您可以定义每个用户、每个组、甚至每台计算机的访问权限,并且访问类型不仅仅是读取、写入和执行。
如果您想支持所有 Windows 文件安全方面,请查看特定的 Windows 安全功能。
然而,Visual Studio 的 C 运行时具有一些“模拟”(以最小方式)Unix 安全方法的功能。查找 _chmod 和 _access (http://msdn .microsoft.com/en-us/library/1w06ktdy(v=vs.80).aspx 应该可以帮助您入门)。
The Windows file-security model is very different from the (old?) simple Unix approach.
In Windows you can define the access per user, per group, even per computer, and there are many more access-types than just read, write and execute.
If you want to support all Windows file-security aspects, take a look at the specific Windows security functions.
Visual Studio's C-Run-time however, has some functions that 'emulate' (in a minimal way) the Unix security approach. Look for _chmod and _access (http://msdn.microsoft.com/en-us/library/1w06ktdy(v=vs.80).aspx should get you started).