filesystems - Spaces in the filename -
some file system cares spaces @ beginning or end of file or directory name?
they (file system) convert this: "/ directory /" "/directory/" when create file?
english not native language, apologize mistake.
yes care. instance in linux ext3 / ext4:
touch "file1" touch " file1" touch "file1 "
will create 3 different files. 1 without spaces, other leading space, , other trailing one.
it works same directories, linux follows unix principle of everything file.
windows filename rules advices against using trailing spaces files or directories, though underlying filesystem may support it.
Comments
Post a Comment