📄 uutils.pas
字号:
{*******************************************************}
{ }
{ DirTree Demo }
{ }
{ 版权所有 (C) 2005 zbird }
{ }
{*******************************************************}
unit uUtils;
interface
function GetDirectoryName(Dir: string): string;
implementation
function GetDirectoryName(Dir: string): string;
begin
if Dir[Length(Dir)] <> '\' then
Result := Dir + '\'
else
Result := Dir;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -