Home

AppData

AppData is a Windows user profile directory used by applications to store per-user data. It exists under a user’s profile, for example C:\Users\<Username>\AppData in modern Windows versions. Older systems used C:\Documents and Settings\<Username>\Application Data. The folder is hidden by default to reduce clutter and protect the data stored there.

The AppData directory contains three standard subfolders: Local, LocalLow, and Roaming. Local stores data that is

Applications use AppData to persist settings, caches, temporary files, and sometimes saved games or user state.

Access to these locations is commonly provided via environment variables: %APPDATA% points to the Roaming folder,

Notes of caution include that AppData can accumulate and consume disk space, and some data may be

---

specific
to
a
single
machine
and
typically
should
not
roam
with
the
user
profile.
Roaming
holds
data
that
should
follow
the
user
to
other
machines
in
a
network,
such
as
application
settings
and
preferences.
LocalLow
contains
data
from
low
integrity
apps,
often
sandboxed,
such
as
certain
web
browsers
running
in
protected
mode.
The
Roaming
subfolder
enables
settings
to
be
available
when
a
user
account
is
used
on
multiple
devices;
the
Local
subfolder
is
used
for
data
that
is
large
or
not
designed
to
roam.
Users
generally
do
not
edit
files
inside
AppData
manually;
it
is
intended
to
be
managed
by
applications
and
the
operating
system.
and
%LOCALAPPDATA%
points
to
the
Local
folder.
This
directory
helps
separate
application
data
from
documents
and
is
frequently
included
in
backups
or
system
migrations
where
appropriate.
sensitive.
Regular
maintenance
is
typically
handled
by
applications
or
system
cleanup
tools
rather
than
manual
edits.