Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
某些文件系统关心文件或目录名称的开头或结尾的空格?
他们(文件系统)在创建文件时将这个:“/目录/”转换为这个“/目录/”?
英语不是我的母语,所以我对任何错误表示歉意。
是的,他们确实在乎。例如在 Linux Ext3 / Ext4 中:
touch "file1" touch " file1" touch "file1 "
将创建三个不同的文件。一个不带空格,另一个带前导空格,另一个带尾随空格。
它与目录的工作方式相同,因为 Linux 遵循 Unix 原则,即一切皆文件。
Windows文件名规则建议不要对文件或目录使用尾随空格,即使底层文件系统可能支持它。