XSIUtils.IsFileSystemCaseSensitive

Introduced

v5.0

Description

Returns true if the file system on the current platform is case-sensitive. For example, the file system on Microsoft Windows is not case-sensitive, meaning that Temp.txt and TEMP.TXT both refer to the same file on disk. However Linux uses a case-sensitive file system. This method is provided to help write scripts that work properly on both platforms.

C# Syntax

Boolean XSIUtils.IsFileSystemCaseSensitive();

Scripting Syntax

oReturn = XSIUtils.IsFileSystemCaseSensitive();

Return Value

Returns true if the file system is case-sensitive

See Also

XSIUtils.IsWindowsOS XSIUtils.IsLinuxOS XSIUtils.Is64BitOS FindFilesInFolder XSIApplication.Platform