「Sds findfile」の版間の差分
(ページの作成: ; 構文 : sds_findfile (const char *lookfor, char *pathfound); ; 機能 : 指定されたファイルまたはディレクトリをパス検索する。 ; 引数 :* *lookfor…) |
(相違点なし)
|
2009年12月16日 (水) 14:41時点における最新版
- 構文
- sds_findfile (const char *lookfor, char *pathfound);
- 機能
- 指定されたファイルまたはディレクトリをパス検索する。
- 引数
-
- *lookfor : 検索するファイル名。
- *pathfound : ファイルのパス。
- 戻り値
- RTNORM または RTERROR.
- サンプル
char lookfor[512],foundpath[512];
sds_getstring(0,"\nEnter でファイルを検索 : ",lookfor);
sds_findfile(lookfor,foundpath);
sds_printf("\nファイルのパスは %s です。: ",foundpath);
関連事項