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

# Global Storage 도구 (GlobalStorage.exe)

> 명단, 지도, 챌린지, 아트 등 공유 데이터를 위해 XBOX 테스트 샌드박스의 전역 타이틀 스토리지를 관리하는 명령줄 GlobalStorage.exe 도구입니다.

Global title storage는 명단, 지도, 챌린지 또는 아트 리소스와 같이 모든 사람이 읽을 수 있는 데이터를 저장하는 데 사용됩니다.

Global Storage 도구는 테스트 샌드박스에서 global title storage를 관리하는 데 사용됩니다.
데이터는 여전히 Partner Center를 통해 RETAIL에 게시해야 합니다.

이 명령줄 도구는 GDK 및 `XboxLiveTools.zip`의 일부입니다. [XBOX Live용 개발 도구](/tools/tools-services/live-tools)를 참조하세요.

GlobalStorage.exe는 RETAIL에 게시하기 전에 테스트 샌드박스에서 타이틀 글로벌 저장소를 관리하는 데 사용됩니다.
처음 사용하기 전에 XblDevAccount.exe signin을 최소한 한 번 호출해야 합니다.

#### 사용법:

***quota:*** 타이틀 글로벌 저장소 할당량 정보를 가져옵니다.

```
GlobalStorage.exe quota -scid xxx --sandbox xxx
```

성공 출력:

```
Your global storage quota: used bytes {usedBytes}, total bytes {totalBytes}
```

***list:*** 타이틀 글로벌 저장소의 지정된 경로 아래에 있는 blob 메타데이터 목록을 가져옵니다.

```
GlobalStorage list --scid xxx --max-items 10 --path path --sandbox xxx
```

성공 출력:

```
Total 12 items found, Displaying item 0 to 12
        test.txt,       Config,         2
        ...
        tool.zip,       Binary,         1874772
```

***delete:*** 타이틀 저장소에서 blob을 삭제합니다.

```
GlobalStorage delete --scid xxx --blob-path foo\bar\blob.txt --sandbox xxx --type Json
```

***download:*** 타이틀 저장소에서 blob 데이터를 다운로드합니다.

```
GlobalStorage download --scid xxx --output c:\test.txt --blob-path \text.txt --sandbox xxx --type Json
```

***upload:*** 타이틀 저장소에 blob 데이터를 업로드합니다.

```
GlobalStorage upload --scid xxx --file c:\test.txt --blob-path \text.txt --sandbox xxx --type Json
```


## Related topics

- [XBOX 서비스용 개발 도구](/ko/tools/tools-services/live-tools.md)
- [XBOX 서비스용 도구](/ko/tools/tools-services/live-tools-nav.md)
- [XBOX 및 PlayFab을 위한 라이브 서비스 도구](/ko/tools/tools-services/index.md)
- [XBOX Connected Storage 도구 (XblConnectedStorage.exe)](/ko/tools/tools-services/live-connected-storage-tool.md)
- [Partner Center에서 Title Storage 구성](/ko/services/xbox-services/storage/title-storage/config/live-title-storage-portal-config.md)
