Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2004.06.20;
Скачать: CL | DM;

Вниз

как получить из полного пути, имя вайла и его расширение   Найти похожие ветки 

 
lena19   (2004-06-06 21:28) [0]

всем привет
как получить из полного пути, имя вайла и его расширение


 
AndersoNRules   (2004-06-06 21:29) [1]

ExtractFileName


 
lena19   (2004-06-06 21:31) [2]

ок спасибо


 
AlexG ©   (2004-06-06 21:31) [3]

Дополни > ExtractFileName F1, по вкусу, и добавь See also


 
grom   (2004-06-06 21:37) [4]

("c:\sys\command.com" -> "command.com")
-------------------------------
function MyExtractFileName(const Path: string): string;
var
 i: integer;
begin
 Result := "";
 i := Length(Path);
 while ((Path[i] <> "\") and (Path[i] <> "/")) and (i > 0) do
   dec(i);
 if i = 0 then Result := Path else
     if i = Length(Path) then Result  := "" else
       Result := Copy(Path, i+1, Length(Path) - i);
end;


 
Gero ©   (2004-06-06 22:03) [5]


> grom   (06.06.04 21:37)

А я лучше могу написать:

function MyExtractFileName(const Path: string): string;
begin
Result := ExtractFileName(Path);
end;


 
GuAV ©   (2004-06-06 22:27) [6]


> function MyExtractFileName(const Path: string): string;
> begin
> Result := ExtractFileName(Path);
> end;

function GeroExtractFileName(const Path: string): string;
begin
Result := ExtractFileName(Path);
end;

function GuAVExtractFileName(const Path: string): string;
begin
Result := GeroExtractFileName(Path);
end;


 
Gero ©   (2004-06-06 23:03) [7]


> GuAV ©   (06.06.04 22:27)

Во-во, кстати, в исходниках VCL я встречался с подобными примерами :)



Страницы: 1 вся ветка

Текущий архив: 2004.06.20;
Скачать: CL | DM;

Наверх




Память: 0.48 MB
Время: 0.037 c
6-1083231348
oleg1234
2004-04-29 13:35
2004.06.20
INDY IdMappedPortTCP Помогите пожалуйста!!!


8-1081226496
kas-t
2004-04-06 08:41
2004.06.20
Как цвет #FFFFFF перевести в RGB?


6-1083257567
Lena19
2004-04-29 20:52
2004.06.20
шаг назад


3-1085616370
Almaz
2004-05-27 04:06
2004.06.20
Конструктор connection string


1-1086292365
TGrey
2004-06-03 23:52
2004.06.20
TThread