Главная страница
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.021 c
1-1086691400
Ivolg
2004-06-08 14:43
2004.06.20
Сохранение


3-1085579525
nedefan
2004-05-26 17:52
2004.06.20
Помогите пожалуйста! Фильтр по дате!


14-1084105414
RealRascal
2004-05-09 16:23
2004.06.20
Баги с пиктограммками в XP


8-1081162594
niko4543
2004-04-05 14:56
2004.06.20
Flash


4-1084725139
andruxin
2004-05-16 20:32
2004.06.20
помогите с отловом WM_SYSCOMMAND