How to copy two file in "%appdata%\Roaming\ path through SWD or any fixlet

How to copy two file in "%appdata%\Roaming\ path through SWD or any fixlet @jgstew

Simple question but helpful for me :slight_smile:

So you’re looking for the %APPDATA% path? It’s very dependent on if you care about the current user or the system user.

The simplest will be actionscript with something like:
copy "{value of variable "APPDATA" of environment}\file" "destination\file"

But that will probably do it just for the system user. If you care about the current user, you’ll need to modify the action to run as current user. See this doc for more info.