From a39d9490c28935de1dcc2ac4ada7a12aa95c46ac Mon Sep 17 00:00:00 2001 From: 93-infinity Date: Sun, 21 Mar 2021 14:33:37 +0800 Subject: [PATCH] Update About-Paths.md Worse at spelling than thefrenchghosty --- docs/About-Paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/About-Paths.md b/docs/About-Paths.md index dc3a946..6b8e4bf 100644 --- a/docs/About-Paths.md +++ b/docs/About-Paths.md @@ -11,7 +11,7 @@ The path of a file or folder specifies its location on the filesystem. The path ### Path length limits on Windows Windows has a 260-character path length limit for compatibility reasons. This means Windows and other programs will refuse to: -- create files or folders with to exceed this limit, +- create files or folders that exceed this limit, - rename existing files or folders to exceed this limit. It's possible for programs to use alternate methods to bypass the 260-character limit. This is because Windows' underlying NTFS filesystem supports "long paths" with lengths of up to 32,767 characters, [even since the days of Windows XP](https://stackoverflow.com/questions/265769/maximum-filename-length-in-ntfs-windows-xp-and-windows-vista). Incidentally, this is even higher than Linux's 4096-character limit.