「Acet::expandfn」の版間の差分
(ページの作成:「{{AutoLISP}} ; 構文 : (acet::expandfn ''filename'' ''check'' ) ; 機能 : 与えられたファイル名(文字列)を完全に展開した名前(文字列)を返す。 ; 引数 :* filename : ファイル名のテキスト :* check : ファイルの存在が確認される ; 戻り値 : 展開されたファイルパスの文字列。 : check が T の場合はパス内のファイルの存在確認でファイルがあればパスが返る。…」) |
編集の要約なし |
||
34行目: | 34行目: | ||
関連事項 | 関連事項 | ||
* [[expresstools関数]] | * [[expresstools関数]] | ||
* [[ | * [[acet::expandfn]] | ||
* [[acet::nameonly]] | |||
* [[acet::pathonly]] | |||
[[Category:AutoLISP]] | [[Category:AutoLISP]] |
2025年6月25日 (水) 08:27時点における最新版
- 構文
- (acet::expandfn filename check )
- 機能
- 与えられたファイル名(文字列)を完全に展開した名前(文字列)を返す。
- 引数
-
- filename : ファイル名のテキスト
- check : ファイルの存在が確認される
- 戻り値
- 展開されたファイルパスの文字列。
- check が T の場合はパス内のファイルの存在確認でファイルがあればパスが返る。
- サンプル
(acet::expandfn "myfile.txt" T ) "c:\\tmp\\myfile.txt" (acet::expandfn "myfile.txt" nil ) nil (acet::expandfn "c:\\tmp\\myfile.bak" T ) nil
関連事項