834772509 / fatio

A program for reading and writing FAT32/EXFAT file systems.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fatio

A program for reading and writing FAT32/EXFAT file systems.

command

List

List supported partitions.

fatio.exe list

Mkfs

Create an FAT/exFAT volume, Supported format options: FAT, FAT32, EXFAT.

fatio.exe mkfs Disk Part format [CLUSTER_SIZE]
# Example:
# fatio.exe mkfs 1 2 FAT

Label

Set/remove the label of a volume.

fatio.exe label Disk Part [String]
# Example:
fatio.exe label Disk Part mydisk

Mkdir

Create a new directory.

fatio.exe mkdir Disk Part Dir
# Example:
# fatio.exe mkdir 1 2 \dir

ls

List files in the specified directory.

fatio.exe ls Disk Part Dir
# Example:
# fatio.exe ls 1 2 \

Copy

Copy files from FAT/EXFAT file systems.

fatio.exe copy Disk Part Src_File Dest_File
# Examples:
# fatio.exe copy 1 2 D:\text.txt text.txt
# fatio.exe copy 1 2 D:\text.txt \dir\text.txt
# fatio.exe copy 1 2 D:\files \

Remove

Remove the file from FAT partition.

fatio.exe remove Disk Part Dest_File
# Examples:
fatio.exe remove 1 2 \text.txt
fatio.exe remove 1 2 \dir

Move

move the file from FAT partition.

fatio.exe move Disk Part Src_File Dest_File
# Examples:
fatio.exe move 1 2 \text.txt \abc.txt

Extract

Extract the archive file to FAT partition.

fatio.exe extract Disk Part File
# Example:
fatio.exe extract 1 2 D:\windows.iso

Dump

Dump the file from FAT partition.

fatio.exe dump Disk Part Src_File Dest_File
# Examples:
fatio.exe dump 1 2 text.txt D:\text.txt
fatio.exe dump 1 2 \dir\text.txt D:\text.txt

About

A program for reading and writing FAT32/EXFAT file systems.

License:GNU Affero General Public License v3.0


Languages

Language:C 100.0%