Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ NormalizedPath

string System.IO.FileSystemInfo.NormalizedPath
getpackage

Definition at line 234 of file FileSystemInfo.cs.

235 {
236 get
237 {
238 if (!PathInternal.EndsWithPeriodOrSpace(FullPath))
239 {
240 return FullPath;
241 }
242 return PathInternal.EnsureExtendedPrefix(FullPath);
243 }
244 }