mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
Update README.md
This commit is contained in:
parent
2ab44c8a8c
commit
a1dcf64f8a
1 changed files with 45 additions and 3 deletions
48
README.md
48
README.md
|
@ -5,8 +5,8 @@ General purpose reading/extraction tool for Nintendo Switch file formats.
|
||||||
* PartitionFs (`PFS0`) (.pfs0)
|
* PartitionFs (`PFS0`) (.pfs0)
|
||||||
* Sha256PartitionFs (`HFS0`) (.hfs0)
|
* Sha256PartitionFs (`HFS0`) (.hfs0)
|
||||||
* RomFs (.romfs)
|
* RomFs (.romfs)
|
||||||
* Nintendo Submission Package (.nsp)
|
|
||||||
* Nintendo Content Archive (.nca)
|
* Nintendo Content Archive (.nca)
|
||||||
|
* Nintendo Submission Package (.nsp)
|
||||||
* NX GameCard Image (.xci)
|
* NX GameCard Image (.xci)
|
||||||
* Meta (`META`) (.npdm)
|
* Meta (`META`) (.npdm)
|
||||||
* Nintendo Application Control Property (.nacp)
|
* Nintendo Application Control Property (.nacp)
|
||||||
|
@ -18,7 +18,6 @@ General purpose reading/extraction tool for Nintendo Switch file formats.
|
||||||
* Initial Program Bundle (`INI1`) (.ini)
|
* Initial Program Bundle (`INI1`) (.ini)
|
||||||
* Initial Program (`KIP1`) (.kip)
|
* Initial Program (`KIP1`) (.kip)
|
||||||
|
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
## General usage
|
## General usage
|
||||||
The default mode of NSTool is to show general information about a file.
|
The default mode of NSTool is to show general information about a file.
|
||||||
|
@ -99,7 +98,50 @@ nstool -d some_file.bin
|
||||||
```
|
```
|
||||||
|
|
||||||
## Extract Files
|
## Extract Files
|
||||||
Some file types have some internal file system that can be displayed or extracted
|
Some file types have an internal file system. This can be displayed and extracted.
|
||||||
|
|
||||||
|
To display the file system tree, use the file tree option `--fstree`:
|
||||||
|
```
|
||||||
|
nstool --fstree some_file.bin
|
||||||
|
```
|
||||||
|
|
||||||
|
To extract the file system, use the extract option `-x`, `--extract`. Which has four modes.
|
||||||
|
|
||||||
|
1) Extract the entire file system.
|
||||||
|
|
||||||
|
This extracts the contents of the entire file system to `./extract_dir/`. `extract_dir` will be created if it doesn't exist.
|
||||||
|
```
|
||||||
|
nstool -x ./extract_dir/ some_file.bin
|
||||||
|
```
|
||||||
|
|
||||||
|
2) Extract a sub directory.
|
||||||
|
|
||||||
|
This extracts the contents of `/a/sub/directory/` to `./extract_dir/`. `extract_dir` will be created if it doesn't exist.
|
||||||
|
```
|
||||||
|
nstool -x /a/sub/directory/ ./extract_dir/ some_file.bin
|
||||||
|
```
|
||||||
|
|
||||||
|
3) Extract a specific file to a directory.
|
||||||
|
|
||||||
|
This extracts `/path/to/a/file.bin` to `./extract_dir/file.bin`.
|
||||||
|
```
|
||||||
|
nstool -x /path/to/a/file.bin ./extract_dir/ some_file.bin
|
||||||
|
```
|
||||||
|
|
||||||
|
4) Extract a specific file with a custom name.
|
||||||
|
|
||||||
|
This extracts `/path/to/a/file.bin` to `./extract_dir/different_name.bin`.
|
||||||
|
```
|
||||||
|
nstool -x /path/to/a/file.bin ./extract_dir/different_name.bin some_file.bin
|
||||||
|
```
|
||||||
|
|
||||||
|
### Supported File Types
|
||||||
|
* PartitionFs
|
||||||
|
* Sha256PartitionFs
|
||||||
|
* RomFs (including RomFs embedded in Homebrew NRO)
|
||||||
|
* NCA
|
||||||
|
* NSP
|
||||||
|
* XCI
|
||||||
|
|
||||||
## Encrypted Files
|
## Encrypted Files
|
||||||
Some Nintendo Switch files are partially or completely encrypted. These require the user to supply the encryption keys to NSTool so that it can process them.
|
Some Nintendo Switch files are partially or completely encrypted. These require the user to supply the encryption keys to NSTool so that it can process them.
|
||||||
|
|
Loading…
Reference in a new issue