1樓:
使用tidhttp控制元件。
except
showmessage('未連線到internet或者檔案不存在!')
end;
2樓:匿名使用者
ajax很快。
知道怎麼用不?
'get','地址',false);
然後判斷返回值就可以了。
delphi怎麼判斷一個檔案存在與否,檔案還是資料夾
3樓:匿名使用者
在 delphi 裡可以使用 fileexists / directoryexists 函式來判斷指定檔案、資料夾是否存在,也可以使用 getfileattributes 函式來獲取指定目標屬性來判斷,以下是示例:
procedure : tobject);
beginif fileexists('e:\'thenshowmessage('檔案存在。')
elseshowmessage('檔案不存在。')
if directoryexists('e:\2023年\其他') then
showmessage('是資料夾。')
elseshowmessage('資料夾不存在或不是資料夾。')
end;
請問用delphi如何判斷**上一個檔案是否存在呢?具體** 100
4樓:99966666阿
urldownloadtofile
通過判斷函式返回值,不超過五行這個程式就能完成,自己查查這個函式吧。
如何用ajax檢測遠端檔案是否存在
5樓:匿名使用者
js 判斷不了啊,建議點選之後ajax到伺服器,在伺服器判斷檔案是否存在,如果存在則返回tru
delphi判斷資料夾是否存在,不存在就建立一個
6樓:匿名使用者
delphi 判斷資料夾目錄可以使用 directoryexists 函式,而建立目錄可以使用 createdir 和 forcedirectories 函式。
createdir 和 forcedirectories 函式都可以建立資料夾,兩者的區別在於:
forcedirectories 建立多級目錄,父目錄不必存在;而 createdir 只能建立最後的一級目錄,父目錄必須存在。舉例說明:
如果需要建立 d:\path1\subpath1,那麼 createdir 函式只能先建立 d:\path1(或必須該路徑存在),再建立d:
\path1\subpath1。而用 forcedirectories 函式可以一次性建立。
示例**如下:
procedure : tobject);
beginif not directoryexists( then //判斷目錄是否存在。
trybegin
forcedirectories(; 建立目錄。
end;finally
raise '無法建立路徑: '
end;end;
delphi 判斷資料夾是否有檔案
7樓:匿名使用者
if fileexists('路徑') then messagebox(0,'存在','提示',mb_ok); 判斷檔案是否存在。
if directoryexists('路徑') then messagebox(0,'存在','提示',mb_ok); 判斷資料夾(路徑)是否存在。
delphi中,idftp怎樣查詢ftp伺服器的是否存在某一個檔案
8樓:匿名使用者
varfmyftp1: tidftp;
mystrlist:tstringlist;
:=;false); 獲取ftp伺服器上面的檔案列表。
if <>0 thenbegin
//迴圈查詢你要的檔案。看是否存在。
end;end;
delphi儲存檔案,delphi中如何實現檔案的複製?
還有寫dll檔案是儲存檔名還是標頭檔案名?如 需要呼叫dax.dll檔案,應該儲存習慣建立bin scr tmp doc.用來存放不同的型別檔案。習慣關閉delphi的設定 delphi中如何實現檔案的複製?用copyfile c 123.txt d 123 備份.txt false 最後那個fal...
delphi開啟檔案對話方塊
己聞楣 if opendialog.execute thenbegin if sametext txt extractfileext opendialog.filename then 標誌位 1 else 標誌位 0 end 或者if opendialog.execute then標誌位 ord s...
delphi按知道格式讀取檔案的內容
procedure tform1.button1click sender tobject varf textfile stmp string num integer begin if fileexists e abc123.txt then begin assignfile f,e abc123.t...