Answered
Where is my back up folder? - Photoshop
I Cant find my folder location that autosaves every ten minutes. I checked the roaming file.. Not there
Please help Thank you
I Cant find my folder location that autosaves every ten minutes. I checked the roaming file.. Not there
Please help Thank you
/* Open Photoshop Auto Recovery Folder - Universal */
#target photoshop
app.bringToFront();
openAutoRecoverDir();
function openAutoRecoverDir() {
var os = $.os.toLowerCase().indexOf('mac') >= 0 ? "mac" : "windows";
if (os === 'mac') {
// alert("It's a Mac!");
autoRecoverMac();
function autoRecoverMac() {
var appPath = app.path.fsName.replace(/^\/.+\//, '');
var autoRecoverDirMac = '~/Library/Application Support/Adobe/' + appPath + '/AutoRecover';
var autoRecoverDirMacOpen = Folder(autoRecoverDirMac);
autoRecoverDirMacOpen.execute();
}
} else {
// alert("It's Windows!");
autoRecoverWin();
function autoRecoverWin() {
var appPath = app.path.fsName.replace(/^.+\\/, '');
var autoRecoverDirWin = '~/appData/Roaming/Adobe/' + appPath + '/AutoRecover';
var autoRecoverDirWinOpen = Folder(autoRecoverDirWin);
autoRecoverDirWinOpen.execute();
}
}
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.