メインコンテンツへ移動

ファイル · コマンドリファレンス

qzx listFiles

機能

ワイルドカードと再帰検索を使ってディレクトリ内のファイルを列挙します。

コマンドの成熟度: Alpha

実際の利用とフィードバックに使えますが、インターフェースと動作はまだ変更される可能性があります。 これは現在の開発チェックアウトに対する評価です。今後の各不変リリースタグには、そのバージョンに含まれた正確な評価が保存されます。 PyPI 0.2.2.0.9 で利用できます。ドキュメントは alpha チェックアウト 0.2.2.0.9 に対応しています。

動作と組み込み保護

状態を変更せずに検査します

この操作は直接実行されます

ネイティブプログラムを呼び出さずに動作します

ネットワークを使わずに動作します

権限昇格なしで動作するよう設計されています

この安全分類は 2026-08-25 に OpenAI GPT-5.6 Pro が実装ダイジェスト sha256:9ed75febb115f7e7e659a5047df5f47a43e95d5c7e32d3f5b1c96e4f85b27eff と照合してレビューしました。

正確な構文

qzx listFiles [directory_path] [pattern] [recursive] --json

パラメータ

スワイプするか横スクロールバーを使って、すべての列を表示してください。

名前必須既定値説明
directory_pathstrいいえ"."ファイルを列挙するディレクトリのパス
patternstrいいえ"*"ファイルを絞り込むパターン (例: "*.txt" または "doc*.pdf")
recursivestrいいえ未宣言再帰レベル: 既定ではなし、-r/--recursive は無制限、-rN/--recursiveN は最大 N 階層

入力例

qzx listFiles

現在のディレクトリの全ファイルを列挙

qzx listFiles C:\Documents

C:\Documents ディレクトリの全ファイルを列挙 (Windows)

qzx listFiles /home/user/documents

/home/user/documents ディレクトリの全ファイルを列挙 (Linux/Mac)

qzx listFiles . "*.py"

現在のディレクトリの全 Python ファイルを列挙

qzx listFiles src "*.js" -r

src ディレクトリと全サブディレクトリの JavaScript ファイルを列挙

qzx listFiles src "*.js" -r2

src ディレクトリの JavaScript ファイルをサブディレクトリ 2 階層まで列挙

完全な構造化ペイロードを取得するには --json を追加します: qzx listFiles [directory_path] [pattern] [recursive] --json

観測された出力例

Windows 11 上の QZX 0.2.2.0.9 で取得。終了コードは 0。ホスト依存の値や所要時間は変わる場合があります。

例のコマンド: qzx listFiles ../artifacts/qzx-evidence/golden-core-files "*.txt" -r --json

{
    "success": true,
    "directory": "../artifacts/qzx-evidence/golden-core-files",
    "pattern": "*.txt",
    "recursive": true,
    "recursion_depth": null,
    "files": [
        {
            "name": "alpha.txt",
            "path": "C:\\Team Dropbox\\Valis Idealis\\Ale\\Programacion\\QZX - Quick Zap Exchange\\artifacts\\qzx-evidence\\golden-core-files\\alpha.txt",
            "size": 33,
            "size_formatted": "33.0 B",
            "modified": 1789069884.8062317,
            "modified_formatted": "2026-09-10 14:51:24",
            "is_directory": false
        },
        {
            "name": "gamma.txt",
            "path": "C:\\Team Dropbox\\Valis Idealis\\Ale\\Programacion\\QZX - Quick Zap Exchange\\artifacts\\qzx-evidence\\golden-core-files\\nested\\gamma.txt",
            "size": 19,
            "size_formatted": "19.0 B",
            "modified": 1789069884.8072324,
            "modified_formatted": "2026-09-10 14:51:24",
            "is_directory": false
        }
    ],
    "message": "Found 2 files matching '*.txt' in '../artifacts/qzx-evidence/golden-core-files' (including subdirectories)",
    "meta": {
        "command": "listFiles",
        "command_maturity": {
            "stage": "alpha",
            "label": "Alpha",
            "sequence": 2,
            "public_executable": true,
            "stability": "interface_may_change",
            "summary": "Available for real use and feedback while its interface and behavior can still evolve.",
            "promotion_review_required": false,
            "assessment_scope": "development_checkout"
        },
        "duration_ms": 4.931,
        "schema_version": 1
    }
}
JSON 結果コントラクトを見る
{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "type": "object",
    "required": [
        "success",
        "message",
        "meta"
    ],
    "properties": {
        "success": {
            "type": "boolean"
        },
        "message": {
            "type": "string"
        },
        "meta": {
            "type": "object",
            "required": [
                "command",
                "command_maturity",
                "duration_ms",
                "schema_version"
            ],
            "properties": {
                "command": {
                    "type": "string"
                },
                "command_maturity": {
                    "type": "object",
                    "required": [
                        "stage",
                        "label",
                        "sequence",
                        "public_executable",
                        "stability",
                        "summary",
                        "promotion_review_required",
                        "assessment_scope"
                    ],
                    "properties": {
                        "stage": {
                            "type": "string"
                        },
                        "label": {
                            "type": "string"
                        },
                        "sequence": {
                            "type": "integer"
                        },
                        "public_executable": {
                            "type": "boolean"
                        },
                        "stability": {
                            "type": "string"
                        },
                        "summary": {
                            "type": "string"
                        },
                        "promotion_review_required": {
                            "type": "boolean"
                        },
                        "assessment_scope": {
                            "type": "string"
                        },
                        "note": {
                            "type": "string"
                        },
                        "review": {
                            "type": "object",
                            "required": [
                                "reviewed_on",
                                "rationale",
                                "evidence"
                            ],
                            "properties": {
                                "reviewed_on": {
                                    "type": "string",
                                    "format": "date"
                                },
                                "rationale": {
                                    "type": "string"
                                },
                                "evidence": {
                                    "type": "array",
                                    "minItems": 1,
                                    "items": {
                                        "type": "string"
                                    }
                                },
                                "replacement": {
                                    "type": "string"
                                }
                            },
                            "additionalProperties": false
                        }
                    },
                    "additionalProperties": true
                },
                "duration_ms": {
                    "type": "number"
                },
                "schema_version": {
                    "type": "integer"
                }
            },
            "additionalProperties": true
        },
        "details": {
            "type": "object",
            "properties": {
                "directory": [],
                "pattern": []
            },
            "additionalProperties": true
        },
        "directory": [],
        "error": [],
        "error_code": {
            "type": "string"
        },
        "files": {
            "type": "array"
        },
        "pattern": [],
        "recursion_depth": [],
        "recursive": []
    },
    "additionalProperties": true
}

エラーと制限

公開コントラクトでは失敗時に success=false と説明的な message が必要です。このカタログではまだコマンドごとのエラー分類を宣言していません。結果を確認し、存在しないコードを推測しないでください。

QZX は alpha 段階です。オプション依存関係、権限、ホスト機能によって結果が変わる場合があります。

{
    "success": false,
    "error": "Directory '../artifacts/qzx-evidence/missing-golden-core-path' not found.",
    "error_code": "path_not_found",
    "message": "Directory '../artifacts/qzx-evidence/missing-golden-core-path' not found.",
    "details": {
        "directory": "../artifacts/qzx-evidence/missing-golden-core-path",
        "pattern": "*"
    },
    "meta": {
        "command": "listFiles",
        "command_maturity": {
            "stage": "alpha",
            "label": "Alpha",
            "sequence": 2,
            "public_executable": true,
            "stability": "interface_may_change",
            "summary": "Available for real use and feedback while its interface and behavior can still evolve.",
            "promotion_review_required": false,
            "assessment_scope": "development_checkout"
        },
        "duration_ms": 5.373,
        "schema_version": 1
    }
}

取得したコマンド: qzx listFiles ../artifacts/qzx-evidence/missing-golden-core-path --json

証拠フロー: 取得済み・ダイジェストで検証済み。

証拠と出所

ドキュメントチャネル
開発ドキュメント 0.2.2.0.9 · main · sha256:cfba936e39931c286ca23add0ae546693db17d8b316e7cbc3891d26642d9b7e8
提供状況
0.2.2.0.9 以前

さらに探す

これらのコマンドも ファイル カテゴリに属します。比較して、タスクに最適な操作を選んでください。

QZX の全コマンドを見る