> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Files 탭에 표시되지 않는 파일은 어떻게 볼 수 있나요?

**Files** 탭에는 최대 10,000개의 파일만 표시됩니다. 모든 파일을 다운로드하려면 [Public API](/ko/models/ref/python/public-api/api)를 사용하세요:

```python theme={null}
import wandb

api = wandb.Api()
run = api.run('<entity>/<project>/<run_id>')
run.file('<file>').download()

for f in run.files():
    if <condition>:
        f.download()
```

***

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/ko/support/models/tags/experiments)</Badge>
