Ai ffile

提供:GizmoLabs - だいたい CAD LISP なサイト
2016年5月31日 (火) 14:47時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{AutoLISP}} ; 構文 : (ai_ffile ''filename'') ; 機能 : プログラムのファイル(.lsp, .exp, .exe, .arx)があるかどうかチェックする。 ; 引...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(ai_ffile filename)


機能
プログラムのファイル(.lsp, .exp, .exe, .arx)があるかどうかチェックする。


引数
  • filename … 検索するファイル名


戻り値
あれば、ファイルの T、無ければ nil


サンプル
; 関数定義としては、次の通り
(defun ai_ffile (app)
  (or (findfile (strcat app ".lsp"))
      (findfile (strcat app ".exp"))
      (findfile (strcat app ".exe"))
      (findfile (strcat app ".arx"))
      (findfile app))
)

; 拡張子なしの場合は、.lsp, .exp, .exe, .arx または拡張子なしファイルを検索
(ai_ffile "acad")
T

; 拡張子ありの場合は、そのままの名前ものを検索
(ai_ffile "acad.fas")
nil


関連事項

  • [[]]