dirinfo関数の取得するタイプを分かる範囲で、まとめました。
sdim txt,1024
txt += "現在のフォルダ: "+dirinfo (0)+"\n"
txt += "実行ファイル(自分自身)のフォルダ: "+dirinfo (1)+"\n"
txt += "Windowsフォルダ: "+dirinfo (2)+"\n"
txt += "システムフォルダ: "+dirinfo (3)+"\n\n"
; 以下、その特殊フォルダ
txt += "デスクトップ: "+dirinfo ($10000)+"\n"
txt += "スタートメニュー 「プログラム」フォルダ: "+dirinfo ($10002)+"\n"
txt += "「マイドキュメント」フォルダ: "+dirinfo ($10005)+"\n"
txt += "「お気に入り」フォルダ: "+dirinfo ($10006)+"\n"
txt += "「スタートアップ」フォルダ: "+dirinfo ($10007)+"\n"
txt += "「最近使ったファイル」フォルダ: "+dirinfo ($10008)+"\n"
txt += "「送る」(SendTo)フォルダ: "+dirinfo ($10009)+"\n"
txt += "スタートメニュー フォルダ: "+dirinfo ($1000B)+"\n"
txt += "「マイ ミュージック」フォルダ: "+dirinfo ($1000D)+"\n"
txt += "「マイ ビデオ」フォルダ: "+dirinfo ($1000E)+"\n"
txt += "「Fonts」フォルダ: "+dirinfo ($10014)+"\n"
txt += "「Template」フォルダ: "+dirinfo ($10015)+"\n"
txt += "Internet 「一時ファイル」 フォルダ"+dirinfo ($10020)+"\n"
txt += "Internet 「Cookies」フォルダ: "+dirinfo ($10021)+"\n"
txt += "Internet 「履歴」フォルダ: "+dirinfo ($10022)+"\n"
txt += "アプリの設定: "+dirinfo ($10023)+"\n"
txt += "「プログラムファイル」: "+dirinfo ($10026)+"\n"
txt += "「マイ ピクチャ」フォルダ: "+dirinfo ($10027)+"\n"
txt += "「ユーザー情報」: "+dirinfo ($10028)+"\n"
txt += "重要な「プログラムファイル」: "+dirinfo ($1002B)+"\n"
txt += "All Userの「Template」フォルダ: "+dirinfo ($1002D)+"\n"
txt += "「共有ドキュメント」フォルダ: "+dirinfo ($1002E)+"\n"
txt += "管理ツールのlnk: "+dirinfo ($1002F)+"\n"
txt += "All Userの管理ツールのlnk: "+dirinfo ($10030)+"\n"
txt += "「共有ミュージック」フォルダ: "+dirinfo ($10035)+"\n"
txt += "「共有マイ ピクチャ」フォルダ: "+dirinfo ($10036)+"\n"
txt += "「共有ビデオ」フォルダ: "+dirinfo ($10037)+"\n"
txt += "Lunaスタイル関係?: "+dirinfo ($10038)+"\n"
txt += "CD-R 書き込みのステージング領域: "+dirinfo ($1003B)+"\n"
mesbox txt,640,480,5
PR