如何在 Powershell 或 Windows Command Shell 中设置 FAT32 短名称
我需要编写一个脚本来设置 FAT32 文件系统上文件的短名称。在 NTFS 上,我可以在 Windows 下使用 FSUTIL 实用程序,但我似乎无法弄清楚如何对 FAT32 驱动器执行此操作。
窗口命令或 powershell 脚本的额外荣誉
I need to write a script that sets the short name of a file on a FAT32 file system. On NTFS I can use the FSUTIL utility under windows but I cannot seem to fathom out how to do this for a FAT32 drive.
Bonus kudos for a window command or powershell script
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
他们让这个问题变得非常难以理解,但这里有一个解决方案:
转换 FileSystemObject 的 ShortName 属性
They made this super hard to get at, but here is one solution:
Converting the FileSystemObject's ShortName Property
不幸的是,这是不可能的,因为这是 的限制
SetFileShortName()
Win32 API,我相信fsutil
也在底层使用您可以手动十六进制编辑 FAT32 分区来设置短名称并更新校验和,但如果没有支持,它会非常脆弱从文件系统驱动程序
Unfortunately it's not possible because it's the limitation of the
SetFileShortName()
Win32 API which I believefsutil
also uses under the hoodYou can manually hex edit the FAT32 partition to set the short names and update the checksums but it'll be quite fragile without support from the file system driver