查看 Windows 中的 chmod 权限?

发布于 2024-11-30 08:05:21 字数 114 浏览 2 评论 0原文

我正在本地环境中开发一个网站,并且正在运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

戏剧牡丹亭 2024-12-07 08:05:21

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文