大写 小写 SAMBA 文件创建
使用 C# .Net 2 框架,有没有办法在区分大小写的 SAMBA 驱动器中创建两个仅大小写不同的文件?
例如:
myFile.txt MyFile.txt
这是 SAMBA 配置:
smb.conf
case sensitive = yes
preserve case = yes
short preserve case = yes
谢谢!!!
Using the C# .Net 2 framework, is there any way to create two files differing only in uppercase/lowercase in a case-sensitive SAMBA drive?
For example:
myFile.txt
MyFile.txt
This is the SAMBA configuration:
smb.conf
case sensitive = yes
preserve case = yes
short preserve case = yes
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的客户端可能运行 Windows 吗?
Samba 中的“不区分大小写”设置仅在客户端支持不区分大小写的文件名查找时才有用。 Windows 没有,如果您有两个同名但大小写不同的文件,就会遇到麻烦。
支持不区分大小写的客户端包括 Linux 内核中的 SMB 支持和 Samba 自己的“smbclient”。
Is your client perhaps running Windows?
The "case insensitive" setting in Samba is only useful if the client supports case insensitive filename lookups. Windows does not, and it will have trouble if you have two files with the same name but a different case.
Clients that do support case insensitivity include the SMB support in the Linux kernel and Samba's own "smbclient".