delphi 獲取檔名路徑
2011-10-03 9:26
獲取檔名和路徑函式:
extractfilename() 從檔名中抽取不含路徑的檔名
extractfilepath() 從檔名中抽取路徑名
extractfiledir() 從檔名中抽取目錄名
extractfileext從檔名中抽取擴充套件命
例子:uses shellapi //需要在uses區域加入shellapi;
....
if opendialog1.execute then
begin
lfilename:= opendialog1.filename;
fileext:=extractfileext(lfilename);
filename:=extractfilename(lfilename);
strfile:=copy(filename,1,lenght(fileext)-1)
end;
獲取檔名和檔案路徑
1.問題描述 比如已經知道檔案的路徑是 c dir0 dir1 readme.txt 除了用split 的方式獲取檔名和路徑,有沒有什麼更高效的方式 2.解決辦法 os.path.dirname 路徑 os.path.basename 檔名 import os file path d work te...
獲取短檔名或路徑
一直在找.獲取短檔名或路徑的函式,可能自己笨沒有找到就自己寫了乙個.是通過呼叫winapi函式實現的.1.宣告getshortpathnamea dllimport kernel32.dll entrypoint getshortpathnamea private static extern int...
C 通過檔案路徑獲取檔名
string fullpath website1 default.aspx 檔名 default.aspx string filename system.io.path.getfilename fullpath 副檔名 aspx string extension system.io.path.get...