cancel
Showing results for 
Search instead for 
Did you mean: 

undeleting a file

dallinns
Champ on-the-rise
Champ on-the-rise
Is there a way within alfresco or ifresco to recover a deleted file? I understand that deleted files go into the archive://SpacesStore but how can I get them out using the php library?
1 REPLY 1

ddanninger
Champ in-the-making
Champ in-the-making
Never tried it myself …

i would try first if it works with the "move-to" webscript which is implemented as RESTTransport


$destinationNodeId = "00000-00000-00000";
$deletedFileNodeRef = "archive://SpacesStore/00000-00000-00000";

$RESTTransport = new RESTTransport($repository, $store, $session);
$RESTTransport->MoveTo($destinationNodeId,array($deletedFileNodeRef));

hope it works and please reply if it worked 😃