/usr/src/castle-game-engine-5.2.0/base/castleutils_filenames.inc is in castle-game-engine-src 5.2.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | {
Copyright 2002-2014 Michalis Kamburelis.
This file is part of "Castle Game Engine".
"Castle Game Engine" is free software; see the file COPYING.txt,
included in this distribution, for details about the copyright.
"Castle Game Engine" is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
----------------------------------------------------------------------------
}
{ Operations on filenames (i.e. they don't TOUCH, even read, real files) }
{$ifdef read_interface}
const
{ Root dir name. Empty if not applicable to this OS. }
RootDir = {$ifdef UNIX} '/' {$endif}
{$ifdef MSWINDOWS} '' {$endif} ;
ExeExtension = {$ifdef MSWINDOWS} '.exe' {$else} '' {$endif};
{ Remove from the FileName the last extension (including the dot).
Note that if the FileName had a couple of extensions (e.g. @code(blah.x3d.gz))
this will remove only the last one.
Will remove nothing if filename has no extension.
@italic(It is not adviced to use this function,
better to operate on URLs and MIME types instead of filenames
and extensions, see CastleURIUtils.) }
function DeleteFileExt(const FileName: string): string;
{ Extracts @italic(two) last extensions from the filename, if it has two extensions.
If the filename has only one extension, returns that one extension,
if the filename has no extension --- returns empty string,
similar to ExtractFileExt.
This is useful to detect file types from filenames like @code(model.x3d.gz),
where ExtractFileExt returns only @code(.gz).
This function will return @code(.x3d.gz).
@italic(It is not adviced to use this function,
better to operate on URLs and MIME types instead of filenames
and extensions, see CastleURIUtils.) }
function ExtractFileDoubleExt(const FileName: string): string;
{ Extracts from FileName the name of file, without directory,
without last extension and without any Windows drive letter.
@deprecated Deprecated, since we use URLs everywhere and also
because this has very low usage. Use DeleteURIExt(ExtractURIName(URL))
if you really need to. }
function ExtractOnlyFilename(const FileName: string): string; deprecated;
{ Returns FileName with directory (path) part replaced
with given NewPath. NewPath @bold(must) contain trailing PathDelim.
@deprecated Deprecated, since we use URLs everywhere and also
because this has very low usage. }
function ChangeFilePath(const FileName, NewPath: string): string; deprecated;
{ Include / exclude the last path delimiter, if necessary.
They are just comfortable shorter names for
IncludeTrailingPathDelimiter and ExcludeTrailingPathDelimiter.
@groupBegin }
function InclPathDelim(const s: string): string;
function ExclPathDelim(const s: string): string;
{ @groupEnd }
{ Check is the given Path absolute.
Path may point to directory or normal file,
it doesn't matter. Also it doesn't matter whether Path ends with PathDelim or not.
Note for Windows: while it's obvious that @code('c:\autoexec.bat') is an
absolute path, and @code('autoexec.bat') is not, there's a question
whether path like @code('\autoexec.bat') is absolute? It doesn't specify
drive letter, but it does specify full directory hierarchy on some drive.
This function treats this as @italic(not absolute), on the reasoning that
"not all information is contained in Path".
@seealso IsPathAbsoluteOnDrive }
function IsPathAbsolute(const Path: string): boolean;
{ Just like IsPathAbsolute, but on Windows accepts also paths that specify
full directory tree without drive letter.
@seealso IsPathAbsolute }
function IsPathAbsoluteOnDrive(const Path: string): boolean;
{ Checks is the directory name special, like "." or "..".
The precise definition of "special" is that you cannot ever create
or even have any filenames / directories named like this. }
function SpecialDirName(const DirectoryName: string): boolean;
{ Add Suffix to the filename, right before extension.
Returns @code(DeleteFileExt(FileName) + Suffix + ExtractFileExt(FileName)). }
function AppendToFilename(const FileName, Suffix: string): string;
{$endif read_interface}
{$ifdef read_implementation}
function DeleteFileExt(const FileName: string): string;
begin
Result := ChangeFileExt(FileName, '');
end;
function ExtractFileDoubleExt(const FileName: string): string;
begin
Result := ExtractFileExt(FileName);
if Result <> '' then
Result := ExtractFileExt(ChangeFileExt(FileName, '')) + Result;
end;
function ExtractOnlyFileName(const FileName: string): string;
begin
result := DeleteFileExt(ExtractFileName(FileName));
end;
function ChangeFilePath(const FileName, NewPath: string): string;
begin
result := NewPath + ExtractFileName(FileName);
end;
function InclPathDelim(const s: string): string;
begin
Result := IncludeTrailingPathDelimiter(S);
end;
function ExclPathDelim(const s: string): string;
begin
Result := ExcludeTrailingPathDelimiter(S);
end;
function IsPathAbsolute(const Path: string): boolean;
begin
Result := {$ifdef UNIX} SCharIs(Path, 1, PathDelim) {$endif}
{$ifdef MSWINDOWS} SCharIs(Path, 2, DriveDelim) {$endif};
end;
function IsPathAbsoluteOnDrive(const Path: string): boolean;
begin
Result := IsPathAbsolute(Path)
{$ifdef MSWINDOWS} or SCharIs(Path, 1, PathDelim) {$endif}
end;
function SpecialDirName(const DirectoryName: string): boolean;
begin
Result := (DirectoryName = '.') or (DirectoryName = '..');
end;
function AppendToFilename(const FileName, Suffix: string): string;
begin
{ Could be optimized, as DeleteFileExt and ExtractFileExt
do almost the same work twice. }
Result := DeleteFileExt(FileName) + Suffix + ExtractFileExt(FileName);
end;
{$endif read_implementation}
|